在这里,我正在尝试使用以下代码向 facebook 添加帖子。
FBAppCall *appCall = [FBDialogs presentShareDialogWithLink:urlToShare
name:@"Title"
caption:nil
description:@"description"
picture:nil
clientState:nil
handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {
if (error) {
NSLog(@"Error: %@", error.description);
} else {
NSLog(@"Success!");
}
}];
但这行不通。它给出以下错误。
Error Domain=com.facebook.Facebook.platform Code=102 "The operation couldn’t be completed. (com.facebook.Facebook.platform error 102.)" UserInfo=0x1cde3340 {error_code=102, action_id=E780C3AA-1387-4B9C-9A3A-9A16FB54BC59, error_message=An error occurred during publishing., app_id=558567750859724}
我在这里工作cocos2d
,这可能是原因。