使用FBSDKShareAPI共享指向Facebook页面的链接

时间:2015-12-15 16:17:33

标签: ios objective-c facebook facebook-graph-api facebook-page

假设我拥有所有请求的权限,我想知道如何允许用户使用Facebook提供的FBSDKShareAPI发布到Facebook页面的链接。以下是我们如何为用户执行此操作,但如何为页面执行此操作?

登录:

[login logInWithReadPermissions:@[@"public_profile", @"email", @"user_friends"] fromViewController:self handler:nil];

张贴:

FBSDKShareLinkContent *linkContent = [[FBSDKShareLinkContent alloc] init];
// then we give the link content, then we share it
[FBSDKShareAPI shareWithContent:linkContent delegate:nil];

所以,让我们说用户使用相同的代码登录,然后我们如何允许他们选择页面然后通过页面发布链接?这是图api文档,但我无法找到它的iOS文档。

https://developers.facebook.com/docs/pages/publishing

0 个答案:

没有答案