私のアプリから 画像は FB にアップロードされ、タイムラインに表示されますが、私のページでしか利用できません。シェアしたりいいねしたりしても。それは私の友人の誰にも共有されていません。
これが私のやり方です。NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"SnapShot!!!", @"message", image, @"source", nil];
[FBRequestConnection startWithGraphPath:@"me/photos"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"Post Result : %@ error : %@", result, error);
if (error != null) {
NSLog(@"Posted");
}
}];