Questions regarding Facebook's Graph API's version v2.5
Questions tagged [facebook-graph-api-v2.5]
14 questions
5
votes
0 answers
Facebook Graph API - Get a page's visitor posts
How do I get to the posts that are put under 'VISITOR POSTS' on a Facebook page? I have been unable to find these in the Graph API and am starting to wonder whether the API grants access to the at all.I tried:
v2.5/me/feed?fields=reactions =…

kgongonowdoe
- 425
- 3
- 16
5
votes
1 answer
How to get the number of video's views in facebook
i'm using facebook graph api to get global video views first and then i want to try for individual ones but when i try this syntax:
GET /v2.5/{object-id}/insights/page_video_views?
i got this as an answer:
{
"data": [
],
"paging": {
…

Hind.ls
- 61
- 1
- 2
- 7
4
votes
1 answer
Posting to Facebook Group with FB GRAPH API
I have issue with posting to Facebook group with FB API.
So I have user authenticated with permissions:
email,
publish_pages,
publish_actions,
public_profile,
manage_pages,
read_insights,
user_managed_groups
I got access token then exchanged it to…

carpics
- 2,272
- 4
- 28
- 56
2
votes
1 answer
How to get responsiveness from Facebook Graph API?
Is there a metric that I can pull from the Facebook Graph API that would tell me either/both Response Rate and/or Average Response Time from a page?
I'll attach a screenshot as to what I'm referring to:
I'm seeing this when I go to Settings ->…
user6440655
1
vote
0 answers
Some items are missing when using since parameter
I'm facebook graph API user.
Recently found that since parameter works weird.
I'm using that to find all upcoming events and filter out past events for a particular venue.
For instance:
When I use query like…

taro
- 5,772
- 2
- 30
- 34
1
vote
1 answer
Adapting Page Post Queries from Facebook API 2.5 -> 2.7
I'm currently grabbing post-level insights from my FB page 2.5 for a dashboard to see how well recent posts are doing; a simple benchmark/performance manager dashboard that does all the querying on the front-end [js api].
The calls/procedure I used…

sjbennett85
- 45
- 7
1
vote
0 answers
cannot get my birthday and email from facebook graph API v2.5
Api version 2.5, I'm asked about birthday and email when logging into this app.
{my-id}/permissions
returns
{
"permission": "user_birthday",
"status": "granted"
},
among data, but…

Herokiller
- 2,891
- 5
- 32
- 50
1
vote
0 answers
Facebook GraphAPI Update Post Doesn't Work
First I created a carousel post by specifying a message and child_attachments. Then I updated it by specifying a different message and a different set of child_attachments.
But only the message got updated, not the carousel cards. I. e.…

Real Geek N
- 135
- 2
- 9
1
vote
0 answers
How to get latest profile pictures (not only the current) of a Facebook user using Graph API?
I'm trying to get latest profile pictures of the requesting user (with the user_photos permission, of course). Getting the current profile picture is trivial, getting the latest photos (including all photos, not just profile pictures) is trivial,…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
1
vote
0 answers
Facebook Graph API (2.5) read comments from feed
I am trying to achieve the following: Read comments on an specific feed
I have:
Create an app account
Create test users (temporary facebook account)
On login I have ask/grant all permissions for that users
Then, I have add a feed with "User A" by…

Luciano
- 11
- 1
0
votes
2 answers
Why is the Graph API for querying a group URL simply returning the group ID?
When I GET /{group-id}?fields=link I get just get back {group-id}, rather than a full URL like in the case of /{album-id}?fields=link, /{photo-id}?fields=link, etc. Sample request and response for a group:
GET /v2.5/1685218945065439?fields=link
{
…

mgalgs
- 15,671
- 11
- 61
- 74
0
votes
1 answer
PHP SDK Facebook API 2.5 - post on fanpage - how to
I've got problems with posting from PHP on Facebook PAGE wall.
Same code posts for my personal account (admin on that Facebook page) - but without success when i trying to post on Page.
code working to post on user wall
$linkData = [
…

Grzegorz Miśkiewicz
- 426
- 2
- 14
0
votes
0 answers
Facebook taggable_friends doesn't return all friends
I'm trying to get friends list using /me/taggable_friends endpoint and got missing entities.
Facebook account has 50 friends, production app(having permission) returns 48, staging(i'm app admin) - 25.
There are no information for this issue on…

Roman Karpovich
- 1
- 1
-1
votes
1 answer
How to get list of friends in Facebook Graph API ver 2.5?
I am in the process of creating an Android App using Facebook Graph API where I need list of all friends of the user. How do I get list of friends using Facebook Graph API.
Apparently the API was available till Facebook Graph API v2.1, and was later…

Pratik
- 695
- 2
- 11
- 29