dotnetopenauth

What is a good openid selector control?

此生再无相见时 提交于 2019-11-28 16:32:21
问题 Now that idselector has been upgraded to RPXNow and you can't "just use" the selector code, what is a good replacement? I want to implement OpenId on a new website that I am using, but the users are going to be just dumb when it comes to logging in unless I provide an easy way for them to. As a reference, I will be using .Net Open Id for the background in an ASP.Net MVC web application. EDIT After some cheap thought, what about using the rpxlib? 回答1: Jarrett Vance made a "version" of open

Request for Tutorial to add Openid Support to NerdDinner ASP.NET MVC application

泪湿孤枕 提交于 2019-11-28 15:36:03
I'm looking learn about ASP.NET MVC and OpenId using the ASP.NET MVC NerdDinner tutorial. I would like to replace the Authentication system in NerdDinner to be OpenId only. I've downloaded the latest DotNetOpenAuth libraries but I'm not sure how to put it all together. Can anyone help with a quick step-by-step tutorial? Is this as simple as dropping in the library or are there significant changes needed to the application as well? Once you download dotnetopenid , look in the samples\RelyingPartyMvc directory. There is a sample where they replace the default MVC authentication system with

OpenID authentication in ASP.NET?

…衆ロ難τιáo~ 提交于 2019-11-28 15:23:42
I am starting to build a new web application that will require user accounts. Now that I have an OpenID that I am using for this site I thought it would be cool if I could use OpenID for authentication in my application. Are there any good tutorials on how to integrate OpenID with an ASP.NET site? See Scott Hanselman's post on using DotNetOpenID in ASP.NET. Andrew Arnott's blog is full of samples on using DotNetOpenID with ASP.NET, including ASP.NET MVC. I recently hooked up DotNetOpenID for the Subtext 2.0 release. It went really smoothly - the code samples included with the DotNetOpenID

“No OpenID endpoint found” on Azure Website

て烟熏妆下的殇ゞ 提交于 2019-11-28 12:21:04
I have a strange issue with a MVC 3 app running as an Azure Website. I have had issues with Azure in the past, but the new Website concept works almost perfectly, except for this: DotNetOpenAuth.Messaging.ProtocolException: No OpenID endpoint found. This only happens with Google, only on Azure. Running locally it works fine, running on AppHarbor it works fine, but on Azure every attempt to use Google for OpenID login will result in a server error due to that exception (tracked using Airbrake). See for yourself, try logging in with Google on my website and if you immediately get a server error

DotNetOpenAuth 4.3 and Google - OpenID 2.0 + OAuth 1.0 deprecated

血红的双手。 提交于 2019-11-28 07:01:06
If you want to cut to the chase, the question is: what is the best/official way to use DotNetOpenAuth with Google in asp.net mvc 5? About a year ago, I used OAuth (DotNetOpenAuth oAuth and OpenID) pretty much as it came out of the box for asp.net MVC 4 (as it is in the sample project). Since then I used it successfully for google, facebook, yahoo and microsoft. However, recently I have been having intermittent problems with users signing into google. I have tried upgrading to MVC 5 and DotNetOpenAuth 4.3, but I get the same. When I looked at the google docs I found this: Important: Google has

Is Windows Live ID an OpenID Provider? [closed]

天涯浪子 提交于 2019-11-28 03:50:59
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I've heard different things. Seems like Microsoft experimented with a beta service, but I don't know if it's still available, or ever made it into production. If Windows Live ID is an OpenID Provider, where is the endpoint? 回答1: No. Windows Live ID is not an OpenID Provider. They use a proprietary protocol. Ever

MVC4's DotNetOpenAuth TwitterClient sample does not respect prior login

扶醉桌前 提交于 2019-11-28 01:32:25
问题 If I create an ASP.NET MVC 4 Web Application using the Internet Application template, it pre-installs all the components and configuration necessary to implement authentication using a range of OAuth and OpenID providers. Just adding my Twitter consumer key and secret to AuthConfig.cs activates authentication via Twitter. However, it doesn't seem to work as I would expect. If I attempt to authenticate using Twitter, it invariably displays a Twitter sign-on page, regardless of whether I am

Not running in a hosted service or the Development Fabric (Production, not debug/local)

不羁岁月 提交于 2019-11-27 20:54:42
问题 Im just getting started with Windows Azure and have got a small MVC application running locally using the Azure emulator. I signed up for a free trial, downloaded my publishing profile and imported it into VS2012. Published to Azure and got some assembly reference errors. I resolved this by setting them to copy local = true and now i get: Not running in a hosted service or the Development Fabric. Description: An unhandled exception occurred during the execution of the current web request.

How to use OpenID providers with unique identifier URLs in ASP.NET MVC4

不想你离开。 提交于 2019-11-27 11:46:42
问题 The new SimpleMembershipProvider implemented in ASP.NET MVC4 allows easy, built-in support for two popular OpenID providers (Google and Yahoo) and three OAuth providers (Microsoft, Facebook, Twitter). The providers implemented in DotNetOpenAuth.AspNet.Clients for use with the SimpleMembershipProvider all use static URLs for their identity services --- that is, all users use the same well-known URL to access the provider. The users' OpenID identifiers are separate from the URL used to access

Changed domain error - OpenId auth request contains an unregistered domain

被刻印的时光 ゝ 提交于 2019-11-27 11:10:50
问题 I set up a project on my main domain example.com and then moved it to a subdomain sub.example.com Now when I try to use the same (default ASP.NET MVC or on my Discourse forum) project with OpenId and click on the Google button to log in with my Google account it throws the following error - That’s an error. OpenID auth request contains an unregistered domain: http://sub.example.com I have tried Googling that message but apparently I am one of the first four people to see it. Any ideas here?