Not native
This feature is not built into all browsers. To use it reliably, you'll need to include a JavaScript library in your page as a polyfill. You can include the library from https://login.persona.org/include.js.
Summary
This function registers callbacks that respond to a Persona user logging in or out.
Syntax
navigator.id.watch({
loggedInUser: 'bob@example.org',
onlogin: function(assertion) {
// A user has logged in! Here you need to:
// 1. Send the assertion to your backend for verification and to create a session.
// 2. Update your UI.
},
onlogout: function() {
// A user has logged out! Here you need to:
// Tear down the user's session by redirecting the user or making a call to your backend.
}
});
Parameters
loggedInUserOptional- This parameter tells Persona what you believe about the user's state. It may be a string,
null, orundefined. - A string indicates that you believe the user is currently logged in to your site, and the value of the string is that user's case-sensitive email address. A literal
nullindicates that you do not believe the user is logged in. Omitting the value or setting it toundefinedmeans you do not know if the user is logged in or not. - Persona always believes that a user wants to be logged in or does not want to be logged in to your site. Persona compares the value of
loggedInUserto its belief, and invokes the appropriate callback to harmonize the two states: -
loggedInUser Persona's State Callback null"foo@example.com" onlogin()undefined"foo@example.com" onlogin()"bar@example.com" "foo@example.com" onlogin()"foo@example.com" "foo@example.com" none nullnullnone "foo@example.com" nullonlogout()undefinednullonlogout() - Note that Persona may automatically call either
onloginoronlogoutwhen your page loads, but not both. IfloggedInUseris set tofoo@example.com, but Persona believesbar@example.comshould be logged in, onlyonloginwill be called. It will have an assertion forbar@example.comas its first parameter. onlogin- A function which will be invoked and passed a single argument, an assertion, when the user logs in. This function should send the assertion to the site's backend for verification. If verification succeeds, the backend should establish a session for the user and the function should update the UI as appropriate.
onlogoutOptional- A function that will be invoked, without any arguments, when the user logs out. This should tear down the user's session by making a call to the site's backend, or by redirecting the user.
Ifonlogoutis not provided, the session management provided by the Observer API will be disabled. Onlyonreadyandonloginwill be invoked, andonloginwill only be invoked in response to a user's attempt to login (it will not be invoked automatically if the user has logged in before). onreadyOptional- A function that will be invoked when the user agent is initialized and able to process calls to
id.requestandid.logout. The onready callback will be invoked immediately after any automatic invocations ofonlogin,onlogout, oronmatch. By waiting to display UI untilonreadyis called, relying parties can avoid UI flicker in cases where the user agent's preferred state is out of sync with the site's session. - Note that
onreadywill not be invoked after calls toid.requestorid.logout. It is the punctuation mark that concludes the conversation started bywatch.
Example
navigator.id.watch({
loggedInUser: currentUser, // This is email of current user logged into your site
onlogin: function(assertion) {
$.ajax({ // This example uses jQuery, but you can use whatever you'd like
type: 'POST',
url: '/auth/login', // This is a URL on your website.
data: {assertion: assertion}
success: function(res, status, xhr) { window.location.reload(); },
error: function(xhr, status, err) {
navigator.id.logout();
alert("Login failure: " + err);
}
});
},
onlogout: function() {
$.ajax({
type: 'POST',
url: '/auth/logout', // This is a URL on your website.
success: function(res, status, xhr) { window.location.reload(); },
error: function(xhr, status, err) { alert("Logout failure: " + err); }
});
}
});
Specification
Not included in any specification.
See also
Document Tags and Contributors
Tags:
Contributors to this page:
teoli,
MHasan,
mkelly,
jedp,
Callahad,
wbamberg,
kscarfone,
ozten,
ethertank,
anthony_higdon,
Sheppy,
ccarruitero,
enaeseth,
bobonipper@yahoo.com
Last updated by:
teoli,