I am running the Facebook SDK 3.1 on Xcode 4.5.1 with iOS6 on an iPhone 4S. I have an access token, can see my friends, i have not tried to build any other Graph Requests, However, every time I initialise the Facebook object, I see this printed to my console:
Error: HTTP status code: 400
So I decided to NSLog the generated 'error' and got the following:
Error Domain=com.facebook.sdk Code=5 "The operation couldn’t be completed. (com.facebook.sdk error 5.)" UserInfo=0xb89020 {com.facebook.sdk:ParsedJSONResponseKey={
body = {
error = {
code = 100;
message = "Unsupported get request.";
type = GraphMethodException;
};
};
code = 400;
}, com.facebook.sdk:HTTPStatusCode=400}
I have researched this alot and found out that the Application automatically tries to run a 'publishInstall' request that gets logged on your Facebook Developer console.
I am also unsure how to interpret this error, is it possible that Facebook has placed a limit on this type of request?
I've been seeing alot of other people struggling with this type of issue hand have not yet come across a solution for it as it seems like a recent change to the facebook api.
Nonetheless, I would appreciate any advice that can lead me in the right direction.