Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a newbie in IOS. am trying to call Facebook Graph URL to get JSON data & parse it-

NSString *urlStr = @"https://graph.facebook.com/102555409843504_373792589386450";
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlStr]
                                                       cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
                                                   timeoutInterval:10];
    [request setHTTPMethod: @"GET"];
    NSError *requestError;
    NSURLResponse *urlResponse = nil;

    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];

But its returning error-

{
   "error": {
      "message": "Unsupported get request.",
      "type": "GraphMethodException",
      "code": 100
   }
}

-I have a valid session, but not sure how to call the graph API with it.

share|improve this question

1 Answer

If you request this URL in your browser you'll get the same result:

https://graph.facebook.com/102555409843504_373792589386450

The issue is that you are not passing along an access_token. So the proper way to retrieve the data is:

https://graph.facebook.com/102555409843504_373792589386450?access_token=SECRET

For testing purposes, you can grab yourself a token from the Graph API explorer, over at:

https://developers.facebook.com/tools/explorer

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.