I have an application that is retrieving data from Facebook. Users authorize the application to read and write to their pages, and we read their data and post to it from our application. All interaction occurs via the PHP interface that Facebook supplies.
For the last few months our application has been performing this task flawlessly. However in recent days we have started noticing an issue with certain pages.
We go out and retrieve data for a specific page, and we no longer get any data. Instead Facebook returns us an empty result. This obviously causes problems in our application which needs to read this data.
We can still write data just fine.
I am at a point where I'm not sure what this could be. Any common scenarios or recent Graph API issues that could cause this?
["data"]=> array(0) { }It's almost like it doesn't like our access tokens and it is blowing up as a result. That would make sense since you can get graph data just fine in the browser. These pages could have been accessed with a least three different app ids but I don't think that should matter? You can have many different graph apps all hitting the same page and they should all still work. – Alan Delimon Jun 17 '11 at 15:30