Socialid.events.onConnectCancel

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 
== Description ==
 
== Description ==
  
Executado quando o usuário cancela o processo de conexão de um novo provedor de login (não autoriza o login social).
+
Executed when the user cancels the connection proccess to a new login provider (doesn't authorize social login).
  
 
== Adding Handler ==
 
== Adding Handler ==

Revision as of 20:01, 3 November 2014

Contents

Description

Executed when the user cancels the connection proccess to a new login provider (doesn't authorize social login).

Adding Handler

socialid.events.onConnectCancel.addHandler(handler)

Event Data

event onConnectCancel
provider Provider used in the connection. Can be "facebook", "twitter", "linkedin", or "gplus".

Example

Adding a handler for the onConnectCancel event of the Social Connect widget:

 socialid.events.onConnectCancel.addHandler(function(data) {
   console.log("Website received onConnectCancel: ", data);
 });

Example response object:

 {
   event: "onConnectCancel",
   provider: "twitter"
 }
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox