Graph API error param data must be an array - facebook-graph-api

I am trying to load some data to facebook offline events using graph API explorer but ends up with error:
{"error": {
"message": "(#100) param data must be an array.",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "Arug9LHzE4FKTY67LrqQZiJ"
}
}
My data is already in array format.

Related

Facebook Business Ads Python: An acces token different type permission

I have such problem:
On my profile i have 4 account and i can use normally .create_custom_audience and .add_users on each of them.
But when i'm trying to get some stats by method .get_insights_async - it's working only on 3 of them.
For 1 that is not working it gives me error:
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104,
"fbtrace_id": "AbNbFCGcLf7yCcEXTe8v_cW"
}
}
How it can be possible?
And how i can check various type permissions of my token for every account in GraphApi for example?

error with searching Facebook Graph API user search

i want to user Facebook graph api to search for user information
but i get an Error when i write
GET graph.facebook.com/v3.3/search?q=java&type=user
{
"error": {
"message": "Unsupported operation",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "GLFKEUeypcH"
}
}
https://developers.facebook.com/docs/graph-api/advanced#search lists the available search types - those are place, placetopic, and several ad_* searches for targeting purposes.
You can not search for users any more.

Get the post's text using Graph Api Explorer

I want to get the post's text using the post ID using Graph Api query at Graph Api Explorer. I am trying as;
GET/v2.8/{14346289902472_1788429604532785}
and
GET/v2.8/{14346289902472_1788429604532785} HTTP1.1
as documentation says;
But both prompts errors;
{
"error": {
"message": "(#803) Some of the aliases you requested do not exist: {14346289902472_1788429604532785}",
"type": "OAuthException",
"code": 803,
"fbtrace_id": "AKd65t6sFzI"
}
}
and
{
"error": {
"message": "Unknown path components: /1.1",
"type": "OAuthException",
"code": 2500,
"fbtrace_id": "DbFPezM2JiA"
}
}
How can I get the post text using post ID?
Edit 1
Where did you get that id from in the first place?
Visiting https://www.facebook.com/14346289902472_1788429604532785 redirects to https://www.facebook.com/ImranKhanOfficial/posts/1788429604532785, and when you look up the page name ImranKhanOfficial via API, you find its page id is 143462899029472.
So
14346289902472
instead of
143462899029472
And once you use that as the “prefix” for the post id, it works perfectly fine: https://developers.facebook.com/tools/explorer?method=GET&path=143462899029472_1788429604532785&version=v2.8
You are trying to get a single feed item.
GET https://graph.facebook.com/v2.8/143462899029472/feed?id=1788429604532785
{
"error": {
"message": "(#12) singular statuses API is deprecated for versions v2.4 and higher",
"type": "OAuthException",
"code": 12,
"fbtrace_id": "CJpKkf7emZS"
}
}
Graph api does not allow you to do this.
Just get the feed GET https://graph.facebook.com/v2.8/143462899029472/feed and iterate over the results until you find the one you want. If you don't find it in the first set, then paginate and get it in the next set.

Facebook Graph API calls

When i use GET /v2.4/{photo-id} in graph API explorer
It throws an error :
{
"error": {
"message": "(#803) Some of the aliases you requested do not exist: {user-id}",
"type": "OAuthException",
"code": 803
}
}
what does this really mean ? any help
You seem to be passing {user-id} which is not a valid data to query about.
Instead, use the below code without {user-id}:
GET /v2.4/{photo_id}
{photo_id} is an id of a post most probably in the userid_postid ("10000_00001") format.

Embedding facebook videos in website

Using the Graph API I request /me?fields=videos.type(uploaded).fields(id, embed_html). This gives me a list of my uploaded videos:
{
"id": "[...snip...]",
"videos": {
"data": [
{
"id": "10151488520332264",
"embed_html": "<iframe src=\"https://graph.facebook.com/video/embed?video_id=10151488520332264\" width=\"190\" height=\"240\" frameborder=\"0\"></iframe>",
"updated_time": "2013-02-28T11:09:14+0000"
},
[...snip...]
]
}
}
I expect embed_html to be html code that embeds the video. But when I use it, the iframe shows only a graph error:
{
"error": {
"message": "Unknown path components: /embed",
"type": "OAuthException",
"code": 2500
}
}
The video is public and I get the same error also in the graph explorer when requesting it with an access token that has permissions for user_videos.
The video object also has a source property which links directly to the source video file (no player). I could use that and build my own player, but I'd prefer to use the embed code that facebook thinks is best for the video (and browser).