我目前正在使用 SLRequest 让用户喜欢我们的应用页面以换取虚拟货币/新角色。我需要设置哪些参数才能允许这样做?我已经获得了 public_actions 权限。
我找到了以下内容,但我仍然不知道该怎么做:https://developers.facebook.com/docs/opengraph/guides/og.likes
Best Answer-推荐答案 strong>
如果您阅读本文 documentation ,它说-
The og.likes action can refer to any open graph object or URL, except for Facebook Pages or Photos.
因此,用 Graph API 点赞页面是不可能的。
我认为你只有两种选择-
您可以在 FB 应用程序中加载 FB 页面,并使用户能够从那里喜欢该页面。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString"fb://profile/{page-id}"]];
您可以使用 UIWebView 并添加 Like Button .
您也可以查看:FacebookLikeView
关于ios - 通过 SLRequest 代表用户点赞 Facebook 页面?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22955545/
|