How come I can post correctly using https://developers.facebook.com/tools/explorer/ with this url:
https://graph.facebook.com/me/og.likes?object=http://guidepal.com/escape/30?access_token=xxx
where xxx is a valid access-token, even confirmed with
https://developers.facebook.com/tools/debug/
But when I try to use it directly on the browser url I get the json response:
{
"error": {
"message": "An active access token must be used to query information about the current user.",
"type": "OAuthException",
"code": 2500
}
}
I guessed this was because it was not a proper POST request. But I tried it using hurl.it and it did not work, tried using my code for an iPhone application and still the same response. It's only when I use the explorer tool it actually works.
Why is this?