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"]);
}
}];