vote up 0 vote down star

Hi ,

I am using the below code.

OpenIdRelyingParty createRelyingParty()
{
    OpenIdRelyingParty openid = new OpenIdRelyingParty();
    int minsha, maxsha, minversion;
    if (int.TryParse(Request.QueryString["minsha"], out minsha))
    {
        openid.Settings.MinimumHashBitLength = minsha;
    }
    if (int.TryParse(Request.QueryString["maxsha"], out maxsha))
    {
        openid.Settings.MaximumHashBitLength = maxsha;
    }
    if (int.TryParse(Request.QueryString["minversion"], out minversion))
    {
        switch (minversion)
        {
            case 1: openid.Settings.MinimumRequiredOpenIdVersion = ProtocolVersion.V10; break;
            case 2: openid.Settings.MinimumRequiredOpenIdVersion = ProtocolVersion.V20; break;
            default: throw new ArgumentOutOfRangeException("minversion");
        }
    }
    return openid;
}

OpenIdRelyingParty openid = createRelyingParty();  
IAuthenticationRequest request = openid.CreateRequest(openIdBox.Text); 

request.RedirectToProvider();

the above line goes to the openid site to get the authentication.But i would like to authenticate without going to the openid site. Can you please help me out.Thanks

flag

0% accept rate

5 Answers

vote up 12 vote down

If I understand correctly, what you are trying to do is have the OpenID username and password captured on your site and then pass them to OpenID in the background for authentication. Do you not see that this is a very bad idea? If OpenID made this possible I, for one, would stop using them. I don't want them to provide the capability for client applications to grab my username and password thank you very much...!!!!

link|flag
vote up 6 vote down

OpenID is build in such way, to prevent the dependant parties to get the password.

In addition, Username + Password is not the only possible way for users to log into an OpenID

For example, My OpenID doesn't have a password, it has a certificate + verification and my fallback has Username + Password + Yubikey OTP login.

So, Effectively... It is not possible to work the way you imagined with this question, as a password might not even be part of the OpenID, or not enough to enable login.

link|flag
vote up 2 vote down

When you use OpenID you are giving them responsibility for identification and authentication, and they do it for you. If you want to see the information used to authenticate and deal with it within your code, OpenID is not for you.

link|flag
vote up 0 vote down

The only way you can avoid redirecting to the Provider is to use a popup window. The latest version of DotNetOpenAuth (v3.2) adds popup window behavior so that you can do this. Use the OpenIdTextBox control and set its Popup property to Always.

BTW, It looks like you copied your code from the DotNetOpenId sample's loginProgrammatic.aspx.cs file. Just so you know, you can take all that QueryString checking and special logic out. That's just to support some interop testing.

link|flag
vote up 0 vote down

hello friend i wanna same thing what you are trying to do in your project but language is diffrent.im using python for openid.can you give me idea or some technical details how i make request of openid url or corresponding password of openidprovider whatever it is, authenticate and how i can handle those response with the help of API,which lib useful for me,

thanks
rahul

link|flag
You'd be better off searching for questions tagged OpenId and Python: stackoverflow.com/search?q=openid+python - I can see you've already asked a few questions on this tagged just python - but I fear it looks like you really need to get up to speed with Python in general first? – Zhaph - Ben Duguid Aug 19 at 13:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.