Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 872 Bytes

File metadata and controls

28 lines (21 loc) · 872 Bytes

#.logout(callback)

Log the user out of both your site and Facebook. Will also invalidate any access token that you have for the user that was issued before the logout.

##Parameters

plugin.FacebookAgent.prototype.logout = function(callback){}
Name Type Required Description
callback Function No Callback function containing a result code and a JSON response.

If logout succeeds, code is plugin.FacebookAgent.CODE_SUCCEED; otherwise, code is the error code and response is a JSON containing error message.

##Example

var facebook = plugin.FacebookAgent.getInstance();
facebook.logout(function(code, response){
    if(code == plugin.FacebookAgent.CODE_SUCCEED){
        cc.log("Logout succeeded");
    } else {
        cc.log("Logout failed, error #" + code + ": " + response);
    }
});