本文介绍了使用图形 API 从用户中删除应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个 facebook 应用程序,我想从使用 Graph API 的用户那里删除我的应用程序,有什么办法可以做到这一点.
I am developing a facebook application, I want to remove my application from a user using Graph API, is there any way to do this.
推荐答案
当用户连接时,执行:
FB.api("/me/permissions","DELETE",function(response){
console.log(response); //gives true on app delete success
});
这篇关于使用图形 API 从用户中删除应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!