very confused with the Facebook Developer documentation. There is a mention of user_friends having been deprecated back in April 2018, but unclear which interaction with a User's Friends is not allowed anymore. In our case, we would like to allow the Users of our App to be able to check which of their Facebook Friends are already using our App. To connect to them in our App.
We can still find the below in the dev doc: " Facebook Friends
Due to privacy restrictions, you are only able to get a list of Users who have installed your app, not a complete Friend list. You can get a total count of all Friends which includes those who have not installed your app.
Edges
/user-id/friends Access Token
User access token with user_friends permissions Examples
Send a GET /id/friends request, where id is a user-id, to get a list of Friends who have installed the app and the total number of Friends. " With sample request below - can we still use the API that way ?
`curl -i -X GET \"https://graph.facebook.com/me
?fields=friends&access_token={your-user-access-token}"`
Any help understanding if the use above is still possible would be great. Thanks