1
I’m trying to develop an application that does a content search on facebook, example I have a list of keywords, and with these I do the search and facebook will return the content in the form of JSON where it is published and of course the visibility of each post has to be published to be collected, but when I try to run in the browser the url below does not work, follows:
https://graph.facebook.com/search?q=comida&type=post
Error:
{
"error": {
"message": "(#200) Permissions error",
"type": "OAuthException",
"code": 200
}
}
when I try to pass the access token another error occurs: https://graph.facebook.com/v2.2/search?type=post&q=comida&access_token=[token]
Error
{
"error": {
"message": "(#11) Post search has been deprecated",
"type": "OAuthException",
"code": 11
}
}
Someone’s been through it?
Thank you in advance.
thank you was exact that I wanted to know
– Jacob de Oliveira