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.

My Facebook application has a few thousand users but they have not visited the application for a long time and I don't have access tokens for them. I do have their uid's.

How could I make contact to my application users?

I used to use the Notification.sendEmail but it is now deprecated and won't send any emails. I have email permission for all of the users but I didn't store the users email address earlier because I used that function. I should have stored the addresses.

I have understood that all use of new Graph api require access token. So my option would be to use the old Rest api. But is there a method that could be used in a situation like this?

share|improve this question
See the "App to User Request" section of this document: developers.facebook.com/docs/requests – cpilko Aug 26 '12 at 0:01
Looks promising. Need to try it tomorrow. – Mika Aug 26 '12 at 0:18
Can't you still retrieve the email addresses using the app access token? (assuming they haven't subsequently removed the app) – Igy Aug 26 '12 at 3:53
Thanks Igy! If you want to add that as an answer I will accept that. – Mika Aug 26 '12 at 11:13

1 Answer

up vote 0 down vote accepted

You should be able to still retrieve the email addresses of the users who granted your app the email Permission if they haven't subsequently removed it - you can do this with the App Access Token (see the Authentication docs for more info)

Make a call to /<USER ID>?fields=email to get the address

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.