is OAuth required in Facebook Graph API ?

Posted by From.ME.to.YOU on Stack Overflow See other posts from Stack Overflow or by From.ME.to.YOU
Published on 2010-06-02T09:56:34Z Indexed on 2010/06/02 10:03 UTC
Read the original article Hit count: 319

Filed under:
|
|

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 ?

© Stack Overflow or respective owner

Related posts about php

Related posts about facebook