2

Uploaded photos through Graph API "me/photos" aren't showing up in News Feed on Facebook. But the photos are added in albums successfully and shows up in Timeline only. I'm sure that it worked a few months ago, but today I found it wasn't working now. Unfortunately I didn't find any clues in Facebook developers website and any change logs about News Feed. Do I have to call another Graph API to list uploaded photos?

NSArray *permissions =  [[NSArray arrayWithObjects:@"publish_stream", nil] retain];    
[facebook authorize:permissions delegate:self];
...
...
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               image, @"picture",
                               commentView.text, @"message",
                               nil];

[facebook requestWithGraphPath:@"me/photos"
                     andParams:params
                 andHttpMethod:@"POST"
                   andDelegate:self];
Terry Ahn
  • 136
  • 1
  • 1
  • 4
  • Have you tried manually calling the POST request using native NSURLConnection? You could also try a networking library like ASIHTTPRequest to simplify your binary upload. – Kent Nguyen May 14 '12 at 08:35

0 Answers0