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.

Earlier this morning my code for getting a user's email address from Facebook was working fine, but now it returns everything EXCEPT for the user's email.

I get the fields using the Facebook C# SDK. I have the proper permissions to retrieve the email.

Similar problems from other developers:

I tried using Facebook Developer's Graph API Explorer to test the json return fields and it is also missing the email field.

share|improve this question
Are you sure your user hasn't revoked the email permission – Shekhar_Pro Apr 22 '12 at 17:25
I'm testing it with my own account and another new account I made today. And no, I did not revoke anything. – Ron Apr 22 '12 at 17:26
Ummm. Intresting.. haven't encountered this behavior myself, | Not an answer but a suggestion that instead of creating new user to test your app just go to Facebook Dev App Settings and go to roles for you app to create automatic test users Quickly.. – Shekhar_Pro Apr 22 '12 at 17:28

1 Answer

up vote 0 down vote accepted

I solved this after skimming through SO Q&A's and here is the solution for anyone who has encountered the same problem.

Apparently we were using a deprecated permission url string:

var parameters = new Dictionary<string, object>();
parameters.Add("permission", "email,more_permissions,blah,blah");

And should have been using this:

var parameters = new Dictionary<string, object>();
parameters.Add("scope", "email,more_permissions,blah,blah");
share|improve this answer
can you provide the block of code that uses the parameters? I am having the same issue with the C# SDK and the code sample provided. Not getting the user's email. – magic-c0d3r Dec 21 '12 at 4:31

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.