dotnetopenauth

Where can I find a list of OpenID Provider URLs?

I've implemented OpenID on my website but I'm having a hard time finding a list of OpenID Provider URLs. I thought this would be easy to find but I've scoured the web and only found a handful, mostly by accident. Is there a resource that lists available Providers and their authentication URLs? EDIT: Here are the ones I've found so far...

How to use ECDiffieHellmanCng with OpenId in .Net 3.5?

Hello. I need to get those parameterso of OpenId protocol: sd["openid.assoc_type"] = ???; sd["openid.session_type"] = ???; sd["openid.dh_modulus"] = ???; sd["openid.dh_gen"] = ???; sd["openid.dh_consumer_public"] = ???; How can I get it using ECDiffieHellmanCng? Is it real? ...

DotNetOpenId — Getting replay attack failure with programmatic and web logins

I'm adding optional OpenID authentication to the system. Everything works smoothly with DotNETOpenID. Yet, I get an issue when: User logs into the web application using a standard login (FormsAutentication) User associates some OpenID with the account (we use programmatic OpenID logon here to get the claimed identity) User logs out of ...

Do you perform any validation on the OpenID URI?

When you are logging in a user using OpenID, do you perform any validation on the OpenID URI (or identifier)? Or do you just let the library handle it (like DotNetOpenAuth). ...

Expectation Failed when trying to update twitter status

I can't seem to figure this one out. No matter what I do, I keep getting a "417 Expectation failed" error. Everywhere I've looked says that I need to get rid of the Expect header for the HttpWebRequest. Setting the static property ServicePointManager.Expect100Continue = false or the instance property on the web request request.ServicePoi...

How to integrate open ID Login

I want to integrate Open ID, Google and Yahoo login in my site, So please anyone can tell me the process of integration in ASP.NET. ...

OpenId implementation for web services - need tips/help

Suppose I'm trying to implement OpenId for relying in my n-tier web site which uses web services. Please tell me if some steps seem strange. 1) I want the user to enter their OpenId url in a textbox. ex: http://vidalsasoon.myopenid.com 2) The user then clicks submit where the entered Url is sent to my web service using the OpenId api. ...

OpenID: Trying to Get Email Address from Google OP

I’m using dotnetopenauth 3.2 to implement Openid and can’t figure out how to get Google to pass the email address in the Claims Response. I know that Google doesn’t support simple registration, but I can’t determine what they do support. Caveat to this question is that I just started learning OpenID and I know I don’t have a solid gr...

OpenID on a mobile/cell phone

I am trying to set up OpenID authentication on a mobile version of a site of mine (ASP.net MVC, dotnetopenid). When i tested it out earlier (Using WAP internet, Sony Ericsson w200i) it redirected to the provider OK but was very slow to start with, then failed completely due to what i suspect was a too large page. Does anyone know a good...

sreg Yahoo problems

Hello May you please look at the issue: You may test Yahoo sreg at "https://test-id.org/OP/Sreg.aspx" ID : "https://me.yahoo.com/" username: [email protected] password: paranoid Now the problem This code work with Google but not with Yahoo sreg, becase response.GetUntrustedExtension() alwase returns null values for properties for Ya...

claimsResponse Always Return Null

hello i have a following code in asp.net. i have used DotNetOpenAuth.dll for openID. the code is under protected void openidValidator_ServerValidate(object source, ServerValidateEventArgs args) { // This catches common typos that result in an invalid OpenID Identifier. args.IsValid = Identifier.IsValid(args.Value); ...

How to make dotnetopenid work with AOL

The library does not work with AOL (Google and Yahoo are OK). AOL uses openid version 1.0 and I think it is due to this. I have tried extremeswank - works with AOL - no problems, and sreg works with AOL too. I am using the latiest version 3.2.0.9177 of dotnetopenid. You may check code and configuration at 'http://stackoverflow.com/ques...

DotNetOpenAuth - OpenId login redirect hangs when relying party is trusted site

I am using the DotNetOpenAuth MVC relying party sample code (with some cosmetic changes) to integrate OpenId into an ASP.NET MVC application. The code works great except for the following situation: when the relying party (my app) is a trusted site under IE, and I'm hitting that site from any location other then the host machine, the re...

claimsResponse Return Null

hello i have a following code in asp.net. i have used DotNetOpenAuth.dll for openID. the code is under protected void openidValidator_ServerValidate(object source, ServerValidateEventArgs args) { // This catches common typos that result in an invalid OpenID Identifier. args.IsValid = Identifier.IsValid(args.Value); } protected ...

OpenID login problem in shared hosting server

I uploaded my Kigg opensource asp.net mvc based website to a shared hosting server (I am using Asphostcentral). But I encounter a very strange problem when i was trying to login with my OpenID. There is a warning message like this: "Could not load file or assembly PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=3...

DotNetOpenID in an iFrame

I was wondering if it is possible to do a RedirectToProvider and have the resulting OpenID provider page displayed in an iFrame. This would make the authentication flow seem a lot more streamlined. I am using the DotNotOpenID library in ASP.NET MVC (VB). This next part is sort of a seperate question, but is related. I am using Ajax.Be...

Friendly name from Google using OpenID?

When I play ping-pong with the Google OpenID provider, I can't get a friendly name/nickname/username (whatever you want to call it). I get something atrocious looking like the following: www.google.com/accounts/o8/id?id=AItOawmtAnQvSXGhRTkAHZWyxi4L4EKa7xoTT1dk instead of something nice like JohnDoe What's the protocol for getting ...

How to configure dotNetOpenId in an session less load balancing environment

You've probably solved this before. I need to be able to use open id in an environment that does not have session stickiness. The servers do preserve the headers. I'm using ASP.NET MVC and dotNetOpenId version 3.2.0.9177. Although the authentication on the 3rd party web site goes without a hitch when returning the response I get an err...

Retrieve OpenId User Information (Claims) across providers

I'm using DotNetOpenAuth to log in as part of my login process. It works great for handling authentication but the process of retrieving user information from various openId providers is not working very well. Using MyOpenId I do get full information that I request using a ClaimsRequest with DotNetOpenAuth. It apparently uses the SREG p...

Why isn't information about the openID user coming through the protocol?

I am using DotNetOpenAuth to integrate openID in our web application. The code below requests the information to the provider. try { var req = openid.CreateRequest(Request.Form["openid_identifier"]); req.AddExtension(new DotNetOpenAuth.OpenId.Extensions.SimpleRegistration.ClaimsRequest { Email = DotNetOpenAuth.OpenId.Extensi...