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.

In one of my application I have functionality to validate email from facebook. if email is registered on facebook then its valid.

Can some one help me how can i do this ? I have read Graph Api documentation but not find any clue about this.

Thanks !!

share|improve this question

closed as not a real question by CBroe, Michael Berkowski, Nik...., mgibsonbr, Andrew Barber Nov 21 '12 at 5:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I've tried what @Sudhir suggested and it doesn't work, and that's using an access_token with email permission granted so I don't think this is possible.

You say you want to validate the email on Facebook, has the user actually granted your application access or are you just getting a user to enter their email and then you want to search against it? If it's the latter then I don't think this is possible as it would be a massive breach of privacy as far as I'm concerned (you need the email permission to read it anyway and a valid user access_token).

To do this I think you would need users to grant access to your application, and you would need to ask for access to email permission. Unfortunately, that pretty much negates your validation, as they would have granted access to your app and then the email stored with their facebook account would be valid anyway. They also might use a different email address for different log-in providers so not suyre how you could get around that.

So in answer to your question validation like this isn't possible

share|improve this answer
Thanks a lot for detail explantion .. so helpful !! – Pankaj Pareek Nov 1 '12 at 8:47

I don't think this is possible with graph api.

You could make a curl application that uses Facebook search. But this would probably be ok only for small amount of users before FB would block your IP.

share|improve this answer

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