Socialid.login.startLogin

(Difference between revisions)
Jump to: navigation, search
(Description)
(Usage)
Line 11: Line 11:
 
== Usage ==
 
== Usage ==
  
   socialid.login.startLogin(provider)
+
   socialid.login.startLogin(provider, options)
  
 
== Parameters ==
 
== Parameters ==

Revision as of 15:31, 23 November 2017

Contents

Description

Starts the social login process for the given provider. Can open a popup dialog or redirect to the provider, depending on the loginType.

When the loginType is set to "event", this method can trigger the following events:

Usage

 socialid.login.startLogin(provider, options)

Parameters

provider required Determines which provider will be used in the login process. Can be "facebook", "twitter", "linkedin" or "gplus".

Example

It opens a popup starting the login dialog with Facebook when the user clicks on the "facebook_login" button:

 socialid.login.init(1, {loginType: "event"});
 facebook_button = document.getElementById("facebook_login");
 facebook_button.onclick = function() {
   socialid.login.startLogin("facebook");
 };

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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox