Issue
I'd like to obtain a list of pages liked by a page using Facebook php api but I can't find how to do it.
You can obtain this info if you know the id of a page: https://www.facebook.com/browse/fanned_pages/?id=11...5
I've searched here but there's no mention to fanned_pages: https://developers.facebook.com/docs/graph-api/reference/page
Solution
You should be able to use
/{page_id}/likes
and not
/{page_id}?fields=likes
Compare the output of the CocaCola page
https://www.facebook.com/browse/fanned_pages/?id=40796308305
vs.
https://developers.facebook.com/tools/explorer?method=GET&path=40796308305%2Flikes&version=v2.4
See
- https://developers.facebook.com/docs/graph-api/reference/page/likes/#Reading
- https://developers.facebook.com/docs/graph-api/reference/v2.4/object/likes
Answered By - Tobi
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.