Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't get the email address returned in GetExtension method, but it is included in the url that Google (the OP I'm testing with) sends back to me.

if (Page.IsPostBack)
{
    using (var openid = new OpenIdRelyingParty())
    {
        var request = openid.CreateRequest(Request.Form["openid_identifier"]);

        var fetch = new FetchRequest();
        fetch.Attributes.Add(new AttributeRequest(WellKnownAttributes.Contact.Email, true));

        request.AddExtension(fetch);

        request.RedirectToProvider();
    }
}
else
{
    using (var openid = new OpenIdRelyingParty())
    {
        var response = openid.GetResponse();
        if (response != null)
        {
            switch (response.Status)
            {
                case AuthenticationStatus.Authenticated:
                    var claimsResponse = response.GetExtension<FetchRequest>();
                    break;
                case AuthenticationStatus.Canceled:
                    //this.loginCanceledLabel.Visible = true;
                    break;
                case AuthenticationStatus.SetupRequired:
                    //this.loginFailedLabel.Visible = true;
                    break;

                // We don't need to handle SetupRequired because we're not setting
                // IAuthenticationRequest.Mode to immediate mode.
                ////case AuthenticationStatus.SetupRequired:
                ////    break;
            }
        }
    }
}

Anyone knows what's wrong?

share|improve this question
"but it is included in the url that Google" ... It seems like there's a part of your question that is missing. Care to revise, please? – Joce Apr 28 '11 at 5:47
fixed. Thanks.. – Carol Apr 28 '11 at 6:51

2 Answers

up vote 4 down vote accepted

Try the following code:

switch (response.Status)
 {
     case AuthenticationStatus.Authenticated:
         var fetch = response.GetExtension<FetchResponse>();
         string email = String.Empty; 
         if (fetch != null)
         {
            email =  fetch.GetAttributeValue(WellKnownAttributes.Contact.Email);
         }  
        break;
    //...
}
share|improve this answer
that's what I'm doing in my code, but response.GetExtension<FetchRequest>() always return null – Carol Apr 28 '11 at 17:08
you're correct.. I'm using FetchRequest instead of FetchResponse.. thanks! – Carol Apr 28 '11 at 18:42
@Carol: Glad it worked out. – Kamyar Apr 30 '11 at 5:13
string email = string.Empty(); ? Empty method ? Hah ? – Shyju Jan 2 '12 at 0:54

None of the above worked for me (using PayPal Access as a identifier) in C#

The below worked for me:

    OpenIdRelyingParty openid = new OpenIdRelyingParty();

    protected void Page_Load(object sender, EventArgs e)
    {
        var response = openid.GetResponse();

        if (response != null)
        {
            switch (response.Status)
            {
                case AuthenticationStatus.Authenticated:

                    if (this.Request.Params["openid.ext1.value.alias1"] != null)
                    {
                        Response.Write(this.Request.Params["openid.ext1.value.alias1"]);
                        Response.Write(this.Request.Params["openid.ext1.value.alias2"]);
                    }
                    else {
                        Response.Write("Alias wrong");
                    }
                    break;
            }
        }
    }
     protected void loginButton_Click(object sender, EventArgs e)
    {

        var openidRequest = openid.CreateRequest(openIdBox.Text);
        var fetch = new FetchRequest();

        fetch.Attributes.AddRequired(WellKnownAttributes.Contact.Email);
        fetch.Attributes.AddRequired(WellKnownAttributes.Name.FullName);
        openidRequest.AddExtension(fetch);

        openidRequest.RedirectToProvider();

    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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