私はfacebook_skd_3.1(Xcode ios 4.5)を使用しています。FBFriendPickerViewControllerを呼び出して友達リストを取得し、完了ボタンをクリックすると
、選択した友達の壁にメッセージを投稿しようとしましたが、このエラーが発生しました:-警告: View Controllerから却下しようとしていますプレゼンテーションまたは却下の進行中!
2012-12-06 19:37:09.187 ........プロジェクト [5474:19a03] エラー: HTTP ステータス コード: 403
アラート ビューのエラー
error =Error Domain=com.facebook.sdk code=5" ..........
message = "(#200)the user hasn't authorized the application to perform this action";
type = OAuthException
};
};
code=403;
com.acebook.sdk:HTTPStatuscode=403}
コード:-
-(void)facebookViewControllerDoneWasPressed:(id)sender {
NSString* userid;
for (id<FBGraphUser> user in self.friendPickerController.selection)
{
NSLog(@"\nuser=%@\n", user);
userid = user.id;
}
NSMutableDictionary* dictaram = [[NSMutableDictionary alloc]
initWithObjectsAndKeys:@"like this!", @"message", nil];
[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%@/feed", userid]
parameters:params HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error)
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Shared"
message:[NSString stringWithFormat:@ %@! error=%@", fbUserName, error]
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}
];
[self dismissModalViewControllerAnimated:YES];
アクセス許可が必要ですか、それともコーディング エラーがありますか。助けてください。
前もって感謝します。