I am trying to fetch posts from a particular facebook page using the Facebook Graph API v2.1. Below is the URL which I tried:
https://graph.facebook.com/v2.1/search?access_token=xxxxxxxx&q=hello&type=post&fields=from,message,name,caption,description,created_time&limit=2
But I am getting below error:
{
"error": {
"message": "(#11) Post search has been deprecated",
"type": "OAuthException",
"code": 11
}
}
I tried with older versions as well but I am getting the same error message.
I am using app access token to fetch the same.
Is there no way to fetch public posts / comments from a facebook page using Facebook Graph Rest API.
Any guidance is appreciated.