i've applied taggable_friends permission , denied. understand permission tagging user's friends , if want user's friends use app, have use user_friends.
but confused here because, i've discovered lot of personality test websites can friends doesn't use ( or used in past) apps (i.e meaww.com/activities/question/batman_twin_yours/2355). , core intention of these personality testing websites not tagging, sharing result in user's timeline.
i believe apps of above mentioned websites, not have taggable_friends permission (since not ask users tag anyone) or of version 1.0.
is @ possible can suggest me how can user's friends' profile pictures , names websites?
as @cbroe says: can't.
i building 'funny' ('bullshit' or 'humoristic' maybe better terms describe them) - tests/quizzes , trying workaround:
get list of users' (endpoint: /me) -profilepictures. (requires 'user_photos' permission)
$response = $fb->get('/me/photos?type=uploaded&fields=id,picture.width(800).height(800),link', $accesstoken);
than scan likes on pictures.
$response = $fb->get('/'. $tmpid .'/likes', $accesstoken);
in likes id's , names of users. it's not complete friends_list - if me, ok 'some' friends display 'useful'...
(with user_id public profile pic)
hope help!
Comments
Post a Comment