Reputation: 949
I cannot understand the behavior of Facebook: this call working perfectly
https://graph.facebook.com/142809522573631?callback=jQuery18309434105455875397_1369031461008&_=1369031607843
but returning following error
({
"error": {
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
}
});
on this call
https://graph.facebook.com/140402456132379?callback=jQuery18308404146176762879_1369033434327&_=1369034088376
How can I Fix this?
Upvotes: 2
Views: 4300
Reputation: 4466
As you are getting error for Unsupported get request.
, then this means that the object is either not available or is having some restrictions due to which you can't perform a GET
on the Object. As per your comments this was because the ID you were using corresponded to an application which was having Sandbox Mode enabled.
To solve your issue you should navigate to your app settings page and then select disabled for Sandbox Mode, and save the settings.
Upvotes: 3