gpt4 book ai didi

ios - 发布到 friend 的墙 Facebook iOS SDK 3.1

转载 作者:行者123 更新时间:2023-11-29 13:19:35 24 4
gpt4 key购买 nike

根据 Facebook 开发者路线图 (https://developers.facebook.com/roadmap/),他们说我们将无法发布到 friend 墙,除非使用 Feed 对话框,但是 iOS SDK 3.1 上不推荐使用 Feed 对话框

在我的情况下,哪种方法更好?我需要用户从他的 friend 列表中进行选择,然后将链接发布到他们的墙上。

提前致谢

最佳答案

您可以使用提要对话框。我认为 FB 将不得不保留它。我的应用程序现在可以很好地使用它们。

https://developers.facebook.com/docs/howtos/feed-dialog-using-ios-sdk/

- (IBAction)publishButtonAction:(id)sender {
// Put together the dialog parameters
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Facebook SDK for iOS", @"name",
@"Build great social apps and get more installs.", @"caption",
@"The Facebook SDK for iOS makes it easier and faster to develop Facebook integrated iOS apps.", @"description",
@"https://developers.facebook.com/ios", @"link",
@"https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png", @"picture",
nil];

// Invoke the dialog
[self.facebook dialog:@"feed" andParams:params andDelegate:self];

// (here's another typical example of how to call that...)
[FBWebDialogs presentFeedDialogModallyWithSession:
YourFBSessionClass.activeSession
parameters: params
handler: nil];
}

关于ios - 发布到 friend 的墙 Facebook iOS SDK 3.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14712190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com