ウォールに何かを投稿するときに、Facebook のプロフィールにアプリのアイコンを表示したいと考えています。Facebook 開発者アカウントを使用して、アプリ アイコンを送信した新しいアプリ セクションの作成を完了しました。しかし、壁に投稿すると、アイコンではなく文字列しか表示されません。
here is my snippet of code.
-(IBAction)btnPost:(id)sender
{
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"myPB", @"name",
@"http://www.my-t3.com/", @"link",strFbmsg, @"message",
nil];
[appdelegate._facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
}