i just made a photo upload via the Facebook SDK to my personal wall. When i trace the "request:didLoad" method, i get only the "id" and "post_id" back. Here are all my necessary methods:
-(void) postPhoto:(UIButton*)button{
UIImage *uploadImage = [UIImage imageNamed:@"testImage"];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
uploadImage, @"source",
@"test caption", @"message",
nil];
[self.facebook requestWithGraphPath:@"/me/photos" andParams:params andHttpMethod:@"POST" andDelegate:(id)self];
}
- (void)request:(FBRequest *)request didLoad:(id)result{
NSLog(@"Request didLoad: %@", result);
}
Output:
Request didLoad: { id = 3273804256400; "post_id" = "1608527600_3273799016300"; }
So, i´m wondering why there are not more information about the Photo ? I thought i get back all kinds of the Photo fields?