facebook apprequest对话框onclick请求打开其他网址

时间:2013-09-23 10:27:59

标签: android iphone facebook

我的代码就像::

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"hi test",  @"message", @"Check this out", @"notification_text", self.objFriendBean.FBUserId, @"to", nil];

[appDelegate.fbGraph dialog:@"apprequests" andParams:params CallbackObject:self andSelector:@selector(isSendNotificatonToFriend:)];

enter image description here

1 个答案:

答案 0 :(得分:0)

我也遇到了同样的问题。您应该使用https://developers.facebook.com/docs/ios/share-dialogs-ios-sdk/分享对话框,而不是请求,您可以使用该对话框将网络内容发送给朋友的Feed。

相关问题