Questions tagged [facebook-graph-api-v2.6]

Questions regarding Facebook's Graph API's version v2.6

14 questions
5
votes
4 answers

Facebook Graph API - access the comments and their replies with one query

The following Facebook Graph API v2.6 query: /{{POST_ID}}/?fields=comments.summary(true)&access_token={{ACCESS_TOKEN}} will get the comments (with theirs IDs) for the specified Post. Then the…
Nikola Obreshkov
  • 1,698
  • 4
  • 21
  • 32
3
votes
1 answer

“Get Started” button does not appear for FB Messenger bot on Messenger app

For some reason, the "get started" button doesn't appear on mobile Messenger app but it works perfectly on web . I have try to delete the button and re-post it . but still have the same problem. I used node js and I followed FaceBook's…
2
votes
1 answer

Getting Facebook Share, Like and Comment Counts for a Given URL with API Graph v2.6

As both Legacy REST API and Facebook Query Language (FQL) will no longer be available after 7th August I am looking for an API Graph v2.6 based on alternative…
2
votes
0 answers

Facebook Checkin using Graph API in Android

I would like to check-in into Facebook using graph API(Or what ever method available), I have latitude and longitude of the place, please anyone help me in addressing following questions. 1) Which permission is required for getting place_id and…
1
vote
1 answer

FACEBOOK GRAPH API : Error while trying to access user information

I am trying to make a GET request to facebook graph API. When i introduce locale,timezone and gender to the below URL, I receive an error -…
Abhinav Mehrotra
  • 543
  • 2
  • 8
  • 17
1
vote
0 answers

how to upload video to facebook page using php sdk and api graph 2.6

I'm trying to use facebook-graph-api-v2.6 to upload video in mp4 format supplying source equal to the link of the video where it has been upload to a web server but I'm getting this error { "error": { "message": "There was a problem…
1
vote
1 answer

Markdown in Facebook Event posts through Graph API

How one can post to the Event wall using Graph API with Markdown formatting? It is not clear from API docs. I am tried to use POST /v2.6/EVENT_ID/feed query with Markdown in message field but end up with raw text in the result.
fedosov
  • 1,989
  • 15
  • 26
0
votes
3 answers

Facebook Graph API is not returning (From) field for a comment?

I have a question that recently I am seeing that Facebook graph API is not returning (from) field for a comment. Ex:- https://graph.facebook.com/v2.6/{post_id}/comments?fields=from%2Ccan_like&access_token={access_token} OR, If you are debugging…
0
votes
1 answer

Facebook Graph API V 2.6 User Type

Is there a way to know if the user info being returned by the graph api explorer is a user's profile or a business page? The query I am using is: me?fields=feed{from,comments{from}} which gives me back all the users who have left a comment or a…
MAB
  • 43
  • 2
  • 7
0
votes
1 answer

How to apply time based pagination for facebook marketing api `bulk read lead` edge

https://developers.facebook.com/docs/marketing-api/guides/lead-ads/leads/v2.6 The output of lead edge is cursor based pagination. Can it be changed to time based pagination so i can apply time based filter. Current bulk read end point does not allow…
0
votes
1 answer

Facebook's Graph API doesn't deliver full sized images although accessor is named "full_picture" — How to get the real full picture?

I am aware of the many existing questions about FB's Graph API and how to retrieve full sized images. But many of them are about getting user profile pictures, those are answered with "//picture" or anything similar. I need to know how to…
Arvid
  • 1,021
  • 2
  • 17
  • 25
0
votes
0 answers

How to list posts that the logged in user liked on my page (Facebook Graph API)

Is there a way to list all the posts that the logged in user has liked on my page? I know that I can check post by post using the Graph API ("has_liked": true at summary) using this: GET v2.6/POST_ID?fields=likes.summary(true).limit(0) but is there…
0
votes
1 answer

What's the proper way to update the "published" field on a Photo using the Facebook Graph API?

When I try to update the published field on an existing Photo object I get: OAuthException code 1: "An unknown error has occurred." Here's what I'm trying: Upload an image: $ curl -X POST -F published=false -F "access_token=$TOKEN" -F…
mgalgs
  • 15,671
  • 11
  • 61
  • 74
-1
votes
1 answer

Facebook GET /v2.6/{friend-list-id}/members Return Blank in API v2.6

FB.login(function(response) { console.log('Welcome! Fetching your information.... '); FB.api( "/me/friendlists", function (response) { if (response && !response.error) { $.each(response.data, function…