Facebookでログインしてアクティブなセッションを取得することができました....しかし、Facebookに写真を投稿したり、Facebookにメッセージを投稿したりしようとしています。私がそれを正しく行っているかどうか教えてもらえますか? 壁に何も投稿されていないので、機能していないようです。
UIImage *image = combinedImage;
NSString *strMessage = @"Check out my photo";
NSMutableDictionary* params = [NSMutableDictionary dictionary];
[params setObject:strMessage forKey:@"message"];
if (image) {
[params setObject:image forKey:@"picture"];
[facebook requestWithGraphPath:@"me/photos" andParams:params
andHttpMethod:@"POST"
andDelegate:self];
} else {
[facebook requestWithGraphPath:@"me/feed" andParams:params
andHttpMethod:@"POST"
andDelegate:self];
}
みんなありがとう!