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 have an FB app that only saves the Facebook profile id of my user and I missed to add the emails.

Now i need to get all the emails of my app users along with their names, one thing i made is to do it one by one but it takes time to finish.

I hope you guys can help me.

UPDATE:

I'm using the normal php authentication and sdk. The only thing i have is the Facebook user id and i'm looking for a way in FQL with the list of Profile ids that will return Email address and fullname.

In mysql it is such like this :

SELECT email FROM user WHERE IN(1234,2355,5553)

share|improve this question
are you doing authentication? using php-sdk? can you put code up(edit your question and add your auth code), if you are doing authentication? – bool.dev Jan 2 '12 at 8:22

2 Answers

As far as I know (and the docs/the explorer tool state) there's only an "email" and no "friends_email" permission. So you need one access_token with email-permission for each query. So, no. You can't make one query to get email addresses for multiple people. And I don't think Facebook will/should change that soon. Spam etc..

share|improve this answer
Thanks for the reply. I've been testing for a while and they are not allowing email on FQL. The last resort on my problem is to individually make an api call just to fetched the information of my users. – Allan Jikamu Jan 2 '12 at 9:01

you cannot really do batch email gets. However, for each authenticated user you can do \fql?q=Select email from user where uid=me() or simply \me?fields=email. I would really suggest you have your legal department read thru https://developers.facebook.com/policy/, paying extra close attention to Policies section IV. 5. and section V enforcement.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 16:06

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.