benim Openid çözüm için Dotnetopenid kullanıyorum, her şey yolunda boş. herhangi bir fikir?DotNetOpenID Programlı Girişi
OpenIdRelyingParty openid = createRelyingParty();
if (openid.Response != null) {
switch (openid.Response.Status) {
case AuthenticationStatus.Authenticated:
// This is where you would look for any OpenID extension responses included
// in the authentication assertion.
// var extension = openid.Response.GetExtension<SomeExtensionResponseType>();
// Use FormsAuthentication to tell ASP.NET that the user is now logged in,
// with the OpenID Claimed Identifier as their username.
State.ProfileFields = openid.Response.GetExtension<DotNetOpenId.Extensions.SimpleRegistration.ClaimsResponse>();
FormsAuthentication.RedirectFromLoginPage(openid.Response.ClaimedIdentifier, false);
break;
MVC'de DotNetOpenId uygulamasının adım adım talimatlarını işaret edebilirsiniz. MVC ve OpenId ile yeni başlayan biriyim. – Picflight
@Picflight buradan kontrol edebilirsiniz http://stackoverflow.com/questions/933884/request-for-tutorial-to-add-openid-support-to-nerddinner-asp-net-mvc-application – mohamadreza