My application has 3 pages associated with it. Here are their id's :
- 151500351683665 (Community page)
- 143448712494935 (Community page)
- 563925353640654 (Application page)
Using the facebook C# SDK, I'm trying to execute GET on those pages using the following url format :
graph.facebook.com/{pageId}
- http://graph.facebook.com/563925353640654 -> Error
- http://graph.facebook.com/143448712494935 -> Ok
- http://graph.facebook.com/151500351683665 -> Ok
I'm successful when it comes to the community pages, however I'm getting a Unsupported GET request (100) when trying to access the Application page in this manner. I'm not sure what's going on this started to occur recently, the whole thing worked without passing any access tokens as I thought that this was public information :/
Any ideas?
Note: Until lately I was able make the forementioned GET requests without any access tokens - since I believe I was accessing public information. Right only unable to access a single page.