With v2.0 in effect, the API /me/friends
is now limited to the list of friends that have authorized our app. So, this wont help if I need the complete list of my friends.
But facebook also have added a new API /me/taggable_friends
that we can use in order to generate stories that have friends tagged in them, even those friends don't use our app. And if we want to use the taggable friends API, the app will require review.
So, before sending for review I want to make sure that will my app be approved or not? I'm confused since-
the documentation says-
use in order to generate stories that have friends tagged in them;
this answer by facebook product manager mentioned that-
should only be used for the case where you're rendering a list of friends in order to let the user tag them in a post
So I want to know in which scenarios we can use this API that complies with its rules and will be approved when sent for review. For using the OG Actions, of-course it will work (also mentioned in the doc), but will it be approved if-
- the an app is just displaying the list the friends and their profile pics. No story, nothing; or
- if an app is uploading a photo using
/me/photos
and tagging the selected friends using thetags
parameter. (there's no info oftags
parameter in the documentation of/me/photos
but it exists).
I'm just asking this to make sure that it will be approved or not before making too many changes.