Why my eclipse is showing me this error ? I am trying to implement the facebook APi for android but it gives me the above error why ?
They have mentioned in the documentation to place this for logout. This is the code.
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);
I placed it in the onComplete function of mAsyncRunner.logout