This FQL multiquery, for example:
https://graph.facebook.com/fql?q={"posts":"SELECT actor_id,message,permalink,created_time,comments.count FROM stream WHERE source_id=me()","actors":"SELECT uid,name,pic_square,profile_url FROM user WHERE uid IN (SELECT actor_id FROM #posts)"}
works perfectly in the Graph API Explorer, but when you put it straight in a browser, you get:
{
"error": {
"message": "(#601) Parser error: unexpected '{' at position 0.",
"type": "OAuthException"
}
}
What am I missing here? Again something was deprecated by Facebook in their API? I want to do an FQL multiquery using GET (actually using JSONP at the end) - without using the Javascript SDK.
By the way, I am sure it's not an authorization/access_token issue.