如何创建带有“Like it”功能的 Facebook 应用程序确认?
我在 Facebook 应用程序编码方面完全是新手,我想创建一个简单的应用程序,仅在“喜欢”确认后才提供主要内容?
例子: http://www.facebook.com/RelapseRecords?ref=ts&sk=app_162097493835692
(您只能在“喜欢”之后看到下载链接)
我在哪里可以找到相关操作方法?
谢谢你的建议,reevex
i'm a totally newbie in Facebook App coding and i would like to creat a simple app that give the main content only after a "Like it" confirmation?
The example:
http://www.facebook.com/RelapseRecords?ref=ts&sk=app_162097493835692
(You only see the download links after "Like it")
Where i can find a how-to for that?
Thanks in advise, reevex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,这是可能的。 Facebook 最近引入了“签名请求”参数,可用于获取您需要的内容。解码此参数后,您将获得一个 JSON 对象。它的字段之一称为
page
。这是另一个 JSON 对象,其中包含liked
布尔值(如果用户喜欢该页面)。仅当您的应用程序是在页面选项卡中加载的 iframe 时,此功能才可用。根据此布尔值,您可以选择向用户显示哪些内容。
祝你好运!
Actually, it is possible. Facebook recently introduced the „Signed Request” parameter which can be used to obtain what you need. After you decode this parameter you will have a JSON object. One of its field is called
page
. This is another JSON object containing among other params theliked
boolean if the user has liked the page. This is only available if your app is an iframe loaded in a Page tab.Based on this boolean value you can choose which content to display to the user.
Good luck!