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.

Ive just started using the Facebook SDK for iOS, so my apologies if this stuff is blatantly obvious.

Ive done all authorization with the user, i just need to figure out how to store the information into Array/Dictionary

Heres my GraphAPI return

{
  "id": "160284210697696", 
  "feed": {
    "data": [
      {
        "id": "160284210697696_466243660101748", 
        "from": {
          "category": "Musician/band", 
          "name": "Afterglo", 
          "id": "221592331216229"
        }, 
        "to": {
          "data": [
            {
              "category": "Bar", 
              "name": "The Blvd Tavern", 
              "id": "160284210697696"
            }, 
            {
              "category": "Bar", 
              "name": "The Cure Tavern", 
              "id": "287349564662380"
            }
          ]
        }, 
        "message": "Upcoming gigs:\nJanuary 19, February 2 & 9 - The Blvd Tavern, Joondalup.\nMarch 17 - The Cure Tavern, Northbridge.\nFebruary 16 & April 20 - Private/corporate events.\nMore dates to come....\nSee you at a gig soon!", 
        "message_tags": {
          "44": [
            {
              "id": "160284210697696", 
              "name": "The Blvd Tavern", 
              "type": "page", 
              "offset": 44, 
              "length": 15
            }

And the code in iOS which returns no errors, but the count returns 0 on both NSLogs

[FBRequestConnection startWithGraphPath:@"160284210697696?fields=name,feed" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
        if (error)
        {
            NSLog(@"getwall error");
        } else{

            NSArray *collection = (NSArray*)[result data];
            NSLog(@"collection count %d", [collection count]); // returns 0

            NSDictionary* feedMessage = [collection objectAtIndex:0];
            NSLog(@"Feed Count %d", [feedMessage count]); // returns 0
            NSLog(@"Feed ID: %@", [feedMessage objectForKey:@"id"]);
            NSLog(@"Message: %@", [feedMessage objectForKey:@"message"]);
        }
    }];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.