I'm working on an App that loads most of its data from a Facebook Page. The page is public and I was able to fetch basic stuff. Using the Graph API. But when I tried getting statuses from the Facebook page I got the error:
Status data: {
error = {
code = 104;
message = "An access token is required to request this resource.";
type = OAuthException;
};
All I really need is read access to get pictures and statuses from the page. And maybe the ability to "Like" some status.
Does anyone have a snippet or can explain how to accomplish this. It's confusing that Facebook documentation talks about iOS 6 integration but mixes it with their own SDK. And I've had no luck searching for examples...