How to get the facebook friends email address using api? [duplicate] - facebook

This question already has answers here:
How can I get facebook friends list email addresses?
(6 answers)
Closed 9 years ago.
I get current user email Address I need to get the facebook friends email

Read the documentation here
https://developers.facebook.com/docs/reference/login/email-permissions/
It is mentioned clearly that you cannot obtain it, quoting from documentation
(Note: There is no way for apps to obtain email addresses for a user's friends.)

Related

Is there any API or Scraping methods to get Facebook users' phone numbers? [duplicate]

This question already has an answer here:
Facebook API, Phone Numbers
(1 answer)
Closed 3 years ago.
My goal is to get the users' phone numbers by their UID or custom links even though they are not my friends. Tino Group Assistant is doing this really well, how can I get users' phone number like this extension? Any API or method, extensions is suggested? Link of the extension: https://chrome.google.com/webstore/detail/tino-group-assistant/pabbijpgioknanfnfidhocohgicpcpnl?hl=vi&fbclid=IwAR0HpFWjSMQDgLYA9LlLW_eWLQN2Q9zcBVF-bMb8rjQMlk9fZul9fZkyLWA
Input: List of Facebook users' ID or links
Expected output: List of users' phone numbers based on UID or links.
No. See here for more information, from the Facebook API.
https://developers.facebook.com/blog/post/2011/01/14/platform-updates--new-user-object-fields--edge-remove-event-and-more/
https://developers.facebook.com/blog/post/447/

Find All FB Users Who 'Like' XYZ Page [duplicate]

This question already has answers here:
Retrieve Facebook Fan Names
(6 answers)
How to list facebook users who like a page or interest [duplicate]
(6 answers)
Closed 9 years ago.
I'm trying to use the Facebook Graph API to pull lists of User IDs where said user 'likes' any given page. Ex: a list of User IDs of those who've liked fb page id 10152294138493306& (coca cola's).
Further, is it possible to filter down this list based on age/gender etc?
Thanks in advance!
https://www.facebook.com/cocacola/likes
Can you see the list of users who liked the page? No, this information is private. And it's the same on the API.

Facebook integration issue [duplicate]

This question already has answers here:
How to get Facebook friends' email?
(7 answers)
Closed 9 years ago.
Is is possible in iPhone application to get friends email id on Facebook?
No. You can't get friends' emails. Check out graph api permissions.
https://developers.facebook.com/docs/reference/api/permissions/
NO, Its not possible to get email ids of friends although you can ger facebook ids of friends

How to get friends birthday list from facebook? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to get friend's birthday list using facebook api?
I'm developing an application and all my users are also facebook user. Now I want to send emails from admin section to that user's friends about his birthday. Is this possible?
It's not possible to retrieve a user's friend's email address, so you won't be able to do that.
It's trivial to retrieve a user's friend's birthdays provided they've given you the appropriate permissions though. You'll need the friends_birthday permission to do this, and once you have that permission the query is just /me/friends?fields=birthday
Yes, you could send a FQL query to get the birthday, look into User table.
developers.facebook.com/docs/reference/fql/user/
I feel you need to request permission to the user for that.

Post message referencing users [duplicate]

This question already has an answer here:
How to let users tag their friends in a Facebook status update posted from a tab on a Facebook page?
(1 answer)
Closed 8 years ago.
As a facebook app I want to post a message that references a set of users (e.g. #John Doe, #Tom Cruise) so that the message will show up on their wall (and their friends can see).
How can I do this programmatically? Through what API calls?
As stated by aFacebook employee, tagging users in statuses is not available through the API.