Reputation: 1936
I am using graph API to get the feed post. https://graph.facebook.com/128172073865656/feed?limit=200 but it is showing exception
{ "error": { "type": "OAuthException", "message": "An access token is required to request this resource." } }. Could any one please help.
Upvotes: 1
Views: 290
Reputation: 1563
Quite simply, you need to obtain and supply an access token with your request.
In particular, the Graph API connections that you're trying to load have been changed recently, and now require an access_token
, where they previously did not.
See the Facebook Developer Blog, posts on this:
Upvotes: 1