facebook graph api Query Unsupported get request code 100 - facebook

Can someone help me with an answer?
Why some pages in Facebook Graph returns
{
"error": {
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
}
}
page exists at: https://www.facebook.com/RoyalCaninRomania
and facebook graph return: http://graph.facebook.com/RoyalCaninRomania or graph.facebook.com/669235549759213
but in developer is all fine:
developers.facebook.com/tools/explorer/?method=GET&path=669235549759213
he generate graph.facebook.com/669235549759213 url, but this url generate error message in browser

Worked perfectly fine with me.
I believe this issue is closed.
here is the link : http://graph.facebook.com/v2.1/146337548715685

Related

Facebook graph API not working as expected

When I try to upload a photo using the graph API, I get the following error:
{ "error": {
"message": "(#324) Requires upload file",
"type": "OAuthException",
"code": 324,
"fbtrace_id": "Gs78FKPAclY" } }
I am testing this functionality with the same code given on: Uploading Photos and publishing Photo stories in Graph API
specifically, caption=test, URL=https://www.facebook.com/images/fb_icon_325x325.png
and the post is: me/photos.
Does anyone know why?
Thanks in advance.
The problem is that the url field needs to be specified in lowercase, not uppercase, i.e. "url" not "URL". If you specify "URL" then the Graph API returns the error code 324.

How can i get the mutual friend from facebook using facebook graph API?

I am trying to fetch the facebook mutual friend using facebook graph API but getting getting error only.
This is url that i am trying to hit
http://graph.facebook.com/109557?fields=context.fields%28mutual_friends%29
Here is its Response :
{
"error": {
"message": "(#12) context field requires version v2.0 or higher",
"type": "OAuthException",
"code": 12
}
}
As #CBroe said, you should try
https://graph.facebook.com/v2.3/{user_id}?fields=context.fields%28mutual_friends%29

Facebook Graph API Explorer: posting link doesn't work

When I'm trying to post a link via Graph API Explorer, I get the following response:
{
"error": {
"message": "Unsupported post request.",
"type": "GraphMethodException",
"code": 100
}
}
But when I visit the page, the link seems to be posted
Does anyone know what the problem is?

Facebook: How do I retrieve all reviews I have ever posted?

I would like to be able to get all reviews that I have ever posted on Facebook. I have tried it via the Graph API Explorer with no success, in FQL Query:
SELECT review_id FROM review WHERE reviewer_id=me()
This returns an empty JSON object.
In Graph API me/reviewsreturns:
{
"error": {
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
}
}
Is it possible at all or am I wasting my time?
Thanks

facebook graph api explorer

I am facing a problem with Graph API Explorer, and I need to know if it's a known bug in the graph itself or whether something else is wrong.
When I try to get the posts of a page in the graph explorer, most of them show up but some do not although the post itself exists and I can access it in facebook itself.
For your better understanding of the problem here is an example-
593482174003200_649686581716092 gives me this-
{
"error": {
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
}
}
While this http://www.facebook.com/593482174003200/posts/649686581716092/ shows me the actual post.
Thanks in advance.