Socialid.login.disconnect

From Social ID Developers
Revision as of 17:58, 3 November 2014 by Renato.neves (Talk | contribs)
Jump to: navigation, search

Contents

Description

API to disconnect a provider from the current login session.

Usage

 socialid.login.disconnect(provider, handler)

Parameters

provider required Determines which provider will be disconnected from the user logged in the current login session. It could be "facebook", "twitter", "linkedin" or "gplus".
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 the provider was disconnected successfully, or "not_found", if there is no user logged in the current login session.

Example

Disconnects (removes) the Twitter credential from the user logged in the current login session:

 socialid.login.init(1);
 var handler = function(response) {
    if (response.status == "success") {
       alert("Your Twitter credentials was successfully removed!");
    } else {
       alert("It was not possible to remove your Twitter credential");
    }
 }
 socialid.login.disconnect("twitter", handler);

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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox