こんにちは、私はこのコードを使用してFacebookに画像を投稿しています
UIImage *image_LocalSharePhoto = [[UIImage alloc]initWithData:sharedSingleton.dataResultImage];
NSDictionary* attachment = [NSDictionary dictionaryWithObjectsAndKeys:
@"Put Captions On Pics", @"name",
@"Put Captions On Pics", @"caption",
image_LocalSharePhoto,@"picture",
@"I created this fun photo using a FREE app http://bit.ly/CapsPics. #PutCapsOnPics via @PutCapsOnPics", @"description",
nil];
NSString *attachmentStr = [jsonWriter stringWithObject:attachment];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"532872463436844", @"api_key",
@"Share on Facebook", @"user_message_prompt",
attachmentStr, @"attachment",
nil];
[facebook dialog: @"feed" andParams:params andDelegate:self];
Facebookページが開きますが、共有または投稿するものは何も表示されません. 誰かが助けることができますか。ありがとう!