I have been using the below link for quite a while to search for Facebook applications on the graph API. See below link, searching for applications with the word "bingo" in it.
https://graph.facebook.com/search?type=application&q=bingo
Everything worked fine till the 10th of July, when Facebook made changes, see below text found on https://developers.facebook.com/docs/reference/api/search/#access_tokens:
The Graph API Search interface has changes pending with the Q3 2013 migration. Please see the blog post for more information on what's changed. Changes listed in the blog post will go live on July 10th, 2013.
Now, I tried to follow examples on https://developers.facebook.com/docs/reference/api/search/#access_tokens to get an application access token and append access_token= to the link above (https://graph.facebook.com/search?type=application&q=bingo) but I am still getting the same response from Facebook graph:
{
"error": {
"message": "(#200) Must have a valid access_token to access this endpoint",
"type": "OAuthException",
"code": 200
}
}
Does anyone know how to work this around?