我正在尝试在 Facebook 页面(不是用户)上发布消息。
在参数字典中,我添加了带有目标页面 ID 的“to”键,但我总是收到一条错误消息。如果我用用户 ID 替换页面 ID,则代码运行良好。
这是代码:
NSMutableDictionary *params =
[NSMutableDictionary dictionaryWithObjectsAndKeys:
@"My Name", @"name",
@"My caption.", @"caption",
@"My Description.", @"description",
@"http://www.mylink.com.br", @"link",
@"http://www.mylink.com.br/logo.png", @"picture",
pageID, @"to",
nil];
[FBWebDialogs presentFeedDialogModallyWithSession:nil parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
}];
这是错误消息:
An invalid target was specified: 219909461711. The target must be a page, event or user that the actor can post on the wall of.
有什么帮助吗?
提前致谢!(: