Socialid.login.startLogin

(Difference between revisions)
Jump to: navigation, search
(Parameters)
(Example)
Line 23: Line 23:
 
== Example ==
 
== Example ==
  
Inicia o diálogo de login para o Facebook quando o usuário clicar no botão "facebook_login":
+
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"});
 
   socialid.login.init(1, {loginType: "event"});
Line 31: Line 31:
 
   };
 
   };
  
Teste os parâmetros em nosso playground: https://sid-examples.herokuapp.com/social_logins/playground
+
You can test this parameters in our playground: https://sid-examples.herokuapp.com/social_logins/playground

Revision as of 17:30, 3 November 2014

Contents

Description

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

This method can trigger the following events:

Usage

 socialid.login.startLogin(provider)

Parameters

provider required Determines which provider will be used in the login process. It could 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