为什么我的日食向我显示这个错误?我正在尝试为 android 实现 facebook APi,但它给了我上述错误,为什么?
他们在文档中提到将其放置以进行注销。这是代码。
String method = "DELETE";
Bundle params = new Bundle();
/*
* this will revoke 'publish_stream' permission
* Note: If you don't specify a permission then this will de-authorize the application completely.
*/
params.putString("permission", "publish_stream");
mAsyncRunner.request("/me/permissions", params, method, new RevokePermissionListener(), null);
onComplete
我把它放在mAsyncRunner.logout