使用 Facebook 的 Graph API 的 revokeApplication
我正处于将我们的网站从 Rest API 转换为 Graph API 的最后阶段。
我缺少的最后一个部分是当用户选择从我们的网站“删除连接”时使用的旧“revokeApplication”调用。
尽管我希望完全删除 Rest API,但我想我可能只是为此启动它,但它需要一个会话密钥——不再存储在 Graph API 中的东西。
有人有什么想法吗?
I'm in the final stages of converting our site over to Graph API from the Rest API.
The last piece I'm missing is the old "revokeApplication" call used for when a user chooses to "remove connection" from our site.
Despite my desires to completely remove the Rest API, I thought I might just fire it up for this, but it requires a session key -- something no longer stored in the Graph API.
Anybody have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想通了。我将把它留在这里供那些需要了解的人...
旧的其余 api(包括 revokeApplication api)仍然可以访问,现在使用新的 OAuth access_token。只需使用以下网址: https://api.facebook.com/method/METHODNAME
为此特定的调用,它是一个 POST:
更多信息在这里:
http://developers.facebook.com/docs/reference/rest/
I figured it out. I'll leave it here for those that need to know...
The old rest api (including the revokeApplication api) can still be accessed, now with the new OAuth access_token. Just use this url: https://api.facebook.com/method/METHODNAME
For this particular call, it's a POST:
More info here:
http://developers.facebook.com/docs/reference/rest/
您可以使用新的图形 API 来做到这一点:
$revoked 是一个布尔值。
You can do it with the new graph API :
$revoked is a boolean.