Socialid.login.logout

(Difference between revisions)
Jump to: navigation, search
(Parameters)
Line 11: Line 11:
 
{|
 
{|
 
! align="left" width="200px" | handler
 
! align="left" width="200px" | handler
| width="200px" | opcional
+
| width="200px" | optional
 
| Callback function to handle the API response.
 
| Callback function to handle the API response.
 
|}
 
|}

Revision as of 18:09, 3 November 2014

Contents

Description

API to logout the user (destroy the current login session).

Usage

 socialid.login.logout(handler)

Parameters

handler optional Callback function to handle the API response.

API Response

data Always "null". This API does not return data.
status The API response status. It could be "success", if logout the user successfully, or "not_found", if there is no user logged in the current login session.

Example

Logout the user from the current login session:

 socialid.login.init(1);
 var handler = function(response) {
    if (response.status == "success") {
       alert("You have been logged out successfully!");
    } else {
       alert("Could not log out.");
    }
 }
 socialid.login.logout(handler);

You can test this parameters in our playground: https://sid-examples.herokuapp.com/social_logins/playground

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox