Photos don't show up in News Feed on Facebook

Terry Ahn picture Terry Ahn · May 6, 2012 · Viewed 11k times · Source

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];

Answer