Hello i have a problem .. i want to get all the feeds from a facebook page using fb graph API without OAuth but i have a problem
https://graph.facebook.com/[page ID]/feed
i get the following response
{
"error": {
"type": "OAuthAccessTokenException",
"message": "An access token is required to request this resource."
}
}
while i check another page it gets right response
https://graph.facebook.com/[another page ID]/feed
{
"data": [
{
...
why it's asking for an access token for a page ... and it doesn't do that for another page ?
EDIT
i checked the first page Graph call 2 days ago and it was working 100%