ユーザーが私のアプリケーションで Facebook にログインすると、友人のリストにアクセスし、友人を選択してから [完了] を押すことができます。選択した友達の名前のリストとともに UIView が表示されます。選択した友達のウォールにメッセージを投稿したり、プライベート メッセージやリクエストを送信したりしてほしいです。どうすればいいですか?本当に理解できませんし、具体的なサンプルコードも見つかりません。私はこれを試しました:
- (void)postwall
{
NSString *string = @"I reached a score of ";
string = [string stringByAppendingString:[NSString stringWithFormat:@"%d", highscore]];
string = [string stringByAppendingString:@" can you beat me?"];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
//kAppId, @"app_id",
@"https://developers.facebook.com/docs/reference/dialogs/", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
@"Watch Ma Balls", @"name",
@"How long can you keep out of the way of ma balls for", @"caption",
string, @"description",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
}
しかし、[Facebook ダイアログ、「Facebook」が問題を引き起こしています。SDK を使用してファイルをインポートすると、他のエラーが発生します。