我一直在遵循文档的指示:https://developers.facebook.com/docs/ios/share#message-dialog-getting-started
这就是我尝试过的:
[FBDialogs presentMessageDialogWithlink:[NSURL URLWithString:@"http://XXX.net/"] name:@"name" caption:@"CAPTION" description:@"DESCRIPTION" picture:nil clIEntState:nil handler:^(FBAppCall *call,NSDictionary *results,NSError *error) { if(error) { // An error occurred,we need to handle the error // See: https://developers.facebook.com/docs/ios/errors NSLog([Nsstring stringWithFormat:@"Error messaging link: %@",error.description]); } else { // Success NSLog(@"result %@",results); } }];
而这:(应该是同一件事)
FBlinkShareParams *params = [[FBlinkShareParams alloc] init]; params.link = [NSURL URLWithString:@"http://xxx.net/"]; params.name = @"name"; params.caption = @"CAPTION"; //params.picture = [NSURL URLWithString:@"http://upload.wikimedia.org/wikipedia/en/c/cd/Aller_Media_logo.png"]; params.linkDescription = @"DESCRIPTION"; [FBDialogs presentMessageDialogWithParams:params clIEntState:nil handler:^(FBAppCall *call,NSError *error) { if(error) { // An error occurred,we need to handle the error // See: https://developers.facebook.com/docs/ios/errors NSLog([Nsstring stringWithFormat:@"Error messaging link: %@",error.description]); } else { // Success NSLog(@"result %@",results); } }];
这两种方法都会在我的Facebook Messenger应用程序中显示预先填充了我的参数的对话框.但是当我发送消息时,除了链接之外的所有内容都是GONE在接收方端.
根据我的理解,用户不必通过应用程序登录,以便能够从Facebook消息对话框发送消息.
有没有人知道这里发生了什么?这是一个Facebook BUG吗?
编辑:这已被确认为facebook-BUG:https://developers.facebook.com/bugs/1547232035503916
解决方法 虽然这个错误已在2014年6月修复,但仍有可能与最新的Facebook示例代码有类似的问题.在最新的示例“FBShareSample”和Facebook“在iOS中共享”文档中,他们使用该方法[FBDialogs presentShareDialogWithlink:....]
它仅使用参数中的链接而不使用其余参数(尽管后备示例Feed对话实际上使用了所有参数).要使用共享对话框中的所有参数,您需要使用
[FBDialogs presentShareDialogWithParams:...]总结
以上是内存溢出为你收集整理的ios – 发送与Facebook消息对话的链接忽略所有参数全部内容,希望文章能够帮你解决ios – 发送与Facebook消息对话的链接忽略所有参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)