Can I publicly publish the full name and profile of a user signed in through the Facebook API?

To paraphrase, is it possible to use the Open Open API to display the full username and profile for other users of the site who are not Facebook friends with the user?

0
source share
1 answer

Yes; Username, last name and user profile are publicly available. You can get them from the Graph API (along with other information that they provided) by calling:

https://graph.facebook.com/[user_id_or_name]

This will return a JSON string containing the relevant information.

Enjoy! :)

0
source

Source: https://habr.com/ru/post/1781597/


All Articles