https://github.com/okta-graveyard/lock-passwordless
Auth0 Lock Passwordless [DEPRECATED]
https://github.com/okta-graveyard/lock-passwordless
Last synced: 3 months ago
JSON representation
Auth0 Lock Passwordless [DEPRECATED]
- Host: GitHub
- URL: https://github.com/okta-graveyard/lock-passwordless
- Owner: auth0
- License: mit
- Archived: true
- Created: 2015-04-29T19:37:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T18:00:20.000Z (over 6 years ago)
- Last Synced: 2025-01-18T13:53:24.177Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 21.5 MB
- Stars: 90
- Watchers: 46
- Forks: 29
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# This project is deprecated and is not maintained anymore
If you have used lock-passwordless in the past, a migration guide to Lock with Passwordless Mode is available [here](https://auth0.com/docs/libraries/lock/v11/migration-lock-passwordless).
If you have any issues, please reach out to our amazing support team at https://support.auth0.com.
# Lock Passwordless
[![NPM version][npm-image]][npm-url]
[![Build status][strider-image]][strider-url]
[![Dependency Status][david-image]][david-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[Auth0](https://auth0.com) Lock Passwordless is a professional looking dialog that allows users to log in by receiving a one-time password via email or text message. It also supports social providers.
This library has been designed to work in a browser. Lock libraries for [iOS](https://github.com/auth0/Lock.iOS-OSX) and [Android](https://github.com/auth0/Lock.Android) which support passwordless authentication are also available.
## Legacy Grants
We're working to join [lock](https://github.com/auth0/lock) and lock-passwordless in the same project so we can move faster with both projects. In the mean time, new customers using lock-passwordless **outside** of the [Hosted Login Page](https://auth0.com/docs/hosted-pages/login) will see an authorization error about unallowed claims. To fix this, you either start using the Hosted Login Page or you'll have to enable those grants manually in your client. More info here: https://auth0.com/docs/clients/client-grant-types#information-for-existing-and-new-auth0-customers
## Playground
You can try it out yourself online at the [playground](https://auth0.github.io/lock-passwordless/).
## Usage
To send a one-time password via text message you initialize a new `Auth0LockPasswordless` object and invoke the `sms` method.
```javascript
var clientID = "YOUR_AUTH0_APP_CLIENTID";
var domain = "YOUR_DOMAIN_AT.auth0.com";
document.getElementById("loginButton").onclick = function(e) {
var lock = new Auth0LockPasswordless(clientID, domain);
lock.sms(function(error, profile, id_token) {
// This will be invoked when the user enters the one-time password he or she
// received via text message. Here we just welcome the user, but usually you
// want save the profile and id_token, and handle errors.
if (!error) {
alert("Hi " + profile.name);
}
});
};
```
You can also send the user a _magic link_ by invoking the `magiclink` method instead.
```javascript
var clientID = "YOUR_AUTH0_APP_CLIENTID";
var domain = "YOUR_DOMAIN_AT.auth0.com";
document.getElementById("loginButton").onclick = function(e) {
var lock = new Auth0LockPasswordless(clientID, domain);
lock.magiclink();
};
```
Once the user receives the email and clicks on this link, Auth0 will handle the authentication and redirect back to the application with the token as the hash location. You can parse the hash and retrieve the full user profile.
```js
// parse hash on page load
$(document).ready(function(){
var hash = lock.parseHash(window.location.hash);
if (hash && hash.error) {
alert('There was an error: ' + hash.error + '\n' + hash.error_description);
} else if (hash && hash.id_token) {
//use id_token for retrieving profile.
localStorage.setItem('id_token', hash.id_token);
//retrieve profile
lock.getProfile(hash.id_token, function (err, profile) {
if (err){
//handle err
} else {
//use user profile
}
});
}
});
```
## Install
You can obtain Lock Passwordless from our CDN, from [bower](http://bower.io) or from [npm](https://npmjs.org).
### CDN
```html
```
### Bower
```sh
bower install auth0-lock-passwordless
```
```html
```
### NPM
```sh
npm install --save auth0-lock-passwordless
```
After installing the `auth0-lock-passwordless` module, you'll need bundle it up. We have examples for [browserify](examples/bundling/browserify/) and [webpack](examples/bundling/webpack/).
Finally, if you are targeting mobile audiences, it's recommended that you add:
```html
```
## API
### new Auth0LockPasswordless(clientID, domain)
Initializes a new instance of `Auth0LockPasswordless` configured with your application `clientID` and your account's `domain` at [Auth0](https://manage.auth0.com/).
- **clientID {String}**: Your application _clientID_ in Auth0.
- **domain {String}**: Your Auth0 _domain_. Usually _your-account.auth0.com_.
You can find this information at your [application settings](https://manage.auth0.com/#/applications).
#### Example
```javascript
var clientID = "YOUR_AUTH0_APP_CLIENTID";
var domain = "YOUR_DOMAIN_AT.auth0.com";
var lock = new Auth0LockPasswordless(clientID, domain);
```
### .magiclink(options, callback)
Opens a dialog that asks the user for an email address. Once entered, it will send an email containing a _magic link_ that allows the user to log in automatically.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked after an attempt to send the the email has been made. In case of success it will receive the entered email address.
#### Example
```javascript
// invoke magiclink without options or callback
lock.magiclink();
// invoke magiclink with an option that prevents the user from closing the
// dialog
lock.magiclink({closable: false});
// invoke magiclink with a callback function that displays an alert when the
// email has been sent.
lock.magiclink(function(error, email) {
if (!error) {
alert("A magic link has been sent to " + email);
}
});
// invoke magiclink with options and callback
lock.magiclink({closable: false}, function(error, email) {
if (!error) {
alert("A magic link has been sent to " + email);
}
});
```
### .emailcode(options, callback)
Opens a dialog that asks the user for an email address. Then, it will ask for a _code_ that has been sent in an email to the given address. The code will be used as a one-time password to log in.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked after an attempt to log the user in has been made.
#### Example
```javascript
// invoke emailcode without options or callback
lock.emailcode();
// invoke emailcode with an option that prevents the user from closing the
// dialog
lock.emailcode({closable: false});
// invoke emailcode with a callback function that displays an alert when the
// user has logged in.
lock.emailcode(function(error, profile, id_token, access_token, state, refresh_token) {
if (!error) {
alert("User has logged in");
}
});
// invoke emailcode with options and callback
lock.emailcode({closable: false}, function(error, profile, id_token, access_token, state, refresh_token) {
if (!error) {
alert("User has logged in");
}
});
// invoke emailcode in redirect mode
lock.emailcode({callbackURL: "http://mydomain/callback"});
```
### .sms(options, callback)
Opens a dialog that asks the user for a phone number. Then, it will ask for a _code_ that has been sent in a text message to the given number. The code will be used as a one-time password to log in.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked after an attempt to log the user in has been made.
#### Example
```javascript
// invoke sms without options or callback
lock.sms();
// invoke sms with an option that prevents the user from closing the dialog
lock.sms({closable: false});
// invoke sms with a callback function that displays an alert when the user has
// logged in.
lock.sms(function(error, profile, id_token, access_token, state, refresh_token) {
if (!error) {
alert("User has logged in");
}
});
// invoke sms with options and callback
lock.sms({closable: false}, function(error, profile, id_token, access_token, state, refresh_token) {
if (!error) {
alert("User has logged in");
}
});
// invoke sms in redirect mode
lock.sms({callbackURL: "http://mydomain/callback"});
```
### .social(options, callback)
Opens a dialog with buttons to authenticate with the specified social providers.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. The `connections` options must always be present. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked only in popup mode which is discouraged. See [below](#popup-mode) for the caveats.
#### Example
```javascript
// invoke social allowing to authenticate with Facebook and Twitter.
lock.social({
connections: ["facebook", "twitter"]
});
```
### .socialOrMagiclink(options, callback)
Opens a dialog that is a combination of `social` and `magiclink`. It will display buttons to authenticate with the specified social providers and at the same time will ask the user for an email address. When the email address is entered, it will send an email containing a _magic link_ that allows the user to log in automatically.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. The `connections` options must always be present. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked only in popup mode which is discouraged. See [below](#popup-mode) for the caveats.
#### Example
```javascript
// invoke socialOrMagiclink allowing to authenticate with Facebook and Twitter.
lock.socialOrMagiclink({
connections: ["facebook", "twitter"]
});
```
### .socialOrEmailcode(options, callback)
Opens a dialog that is a combination of `social` and `emailcode`. It will display buttons to authenticate with the specified social providers and at the same time will ask the user for an email address. When the email address is entered, it will send a _code_ that serves as a one-time password to log in.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. The `connections` options must always be present. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked only in popup mode which is discouraged. See [below](#popup-mode) for the caveats.
#### Example
```javascript
// invoke socialOrEmailcode allowing to authenticate with Facebook and Twitter.
lock.socialOrEmailcode({
connections: ["facebook", "twitter"]
});
```
### .socialOrSms(options, callback)
Opens a dialog that is a combination of `social` and `sms`. It will display buttons to authenticate with the specified social providers and at the same time will ask the user for a phone number. When the phone number is entered, it will send the _code_ in a text message that serves as a one-time password to log in.
- **options {Object}**: Allows to customize the dialog's appearance and behavior. The `connections` options must always be present. See [below](#customization) for the details.
- **callback {Function}**: Will be invoked only in popup mode which is discouraged. See [below](#popup-mode) for the caveats.
#### Example
```javascript
// invoke socialOrSms specifying that buttons to authenticate with Facebook and
// Twitter should be displayed.
lock.socialOrSms({
connections: ["facebook", "twitter"]
});
```
### .close(callback)
Closes the dialog.
- **callback {Function}**: Will be invoked after the lock has been closed with no arguments.
#### Example
```javascript
// invoke close without a callback
lock.close();
// invoke close with a callback
lock.close(function() {
alert("The Lock has been closed");
});
```
### .destroy()
Removes the Lock from the DOM frees its resources. Once destroyed a Lock can't be opened.
#### Example
```javascript
lock.destroy();
```
### .getProfile(token, callback)
Fetches the full user profile.
- **token {String}**: User id token.
- **callback {Function}**: Will be invoked after the user profile been retrieved.
#### Example
```js
lock.getProfile(id_token, function(error, profile) {
if (!error) {
alert("hello " + profile.name);
}
});
```
### .logout(query)
Log out an user.
- **query {String}**: Query parameters that will be send with the request to log the user out.
### .parseHash(hash)
Parses the hash containing `access_token` and `id_token` appended by Auth0 to the URL in redirect mode.
- **hash {string}**: Hash appended by Auth0 to the URL in redirect mode.
#### Example
```js
lock.parseHash(window.location.hash);
```
#### Example
```javascript
// invoke logout without query parameters
lock.logout();
// invoke logout with query parameters
lock.logout({ref: window.location.href});
```
### Customization
The appearance of the widget and the mechanics of authentication can be customized with an `options` object which has one or more of the following properties. Each method that opens the dialog can take an `options` object as its first argument.
#### UI options
- **autoclose {Boolean}**: Determines whether or not the Lock will be closed automatically after a successful sign in. If the Lock is not `closable` it won't be closed even if this option is set to `true`. Defaults to `false`.
- **connections {Array}**: List of social providers that will be available to perform the authentication. Most of the time you will specify a provider with the connection name, e.g. `facebook`. When the connection's `name` and `strategy` don't match, you'll need to provide an object with those properties, e.g. `{name: "my-connection", strategy: "facebook"}`. This option doesn't have a default value and must be specified when opening the Lock with a method that provides social authentication.
- **container {String}**: The `id` of the html element where the Lock will be rendered. This makes the Lock appear inline instead of in a modal window.
- **dict {Object}**: Allows to customize every piece of text displayed in the Lock. Defaults to `{}`. See below [Dict Specification](#dict-specification) for the details.
- **icon {String}**: Url for an image that will be placed in the Lock's header. Defaults to Auth0's logo.
- **closable {Boolean}**: Determines whether or not the Lock can be closed. When a `container` option is provided its value is always `false`, otherwise it defaults to `true`.
- **defaultLocation {String}**: [ISO country code](http://www.iso.org/iso/country_codes) of the country that will be selected by default when entering a phone number. Defaults to the country the user is in and fallback to `"US"` when it can't be obtained.
- **focusInput {Boolean}**: Determines whether or not the first input on the screen, that is the email or phone number input, should have focus when the Lock is displayed. Defaults to `false` when a `container` option is provided or the Lock is being render on a mobile device. Otherwise it defaults to `true`.
- **gravatar {Boolean}**: Determines whether or not Gravatar images and user names should be displayed on the Lock's header once an email has been entered. Defaults to `true`.
- **popup {Boolean}**: Determines whether or not a popup is shown when authenticating with a social provider. Defaults to `false` and passing `true` is discouraged. See [below](#popup-mode) for more information.
- **popupOptions {Object}**: Allows to customize the location of the popup in the screen. Any [position and size feature](https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Position_and_size_features) allowed by `window.open` is accepted. Defaults to `{}`.
- **primaryColor {String}**: Defines the primary color of the Lock, all colors used in the widget will be calculated from it. This option is useful when providing a custom `icon` to ensure all colors go well together with the icon's color palette. Defaults to `"#ea5323"`.
- **rememberLastLogin {Boolean}**: Determines whether or not the email or the phone number will be filled automatically with the one you used the last time. Defaults to `true`.
- **socialBigButtons {Boolean}**: Determines the size of the buttons for the social providers specified in the `connections` option. It defaults to `true` when the `connections` option contains at most tree providers, otherwise it defaults to `false`.
#### Authentication options
- **authParams {Object}**: Specifies extra parameters that will be sent when starting a login. Defaults to `{}`.
- **callbackURL {String}**: The url Auth0 will redirect back after authentication. When provided it will enable redirect mode. Defaults to the empty string `""` (no callback URL).
- **forceJSONP {Boolean}**: Force JSONP requests for all requests to Auth0. This setup is useful when no CORS allowed. Defaults to `false`.
- **responseType {String}**: Should be set to `"token"` for Single Page Applications, and `"code"` otherwise. Defaults to `"code"` when `callbackURL` is provided, and to `"token"` otherwise.
#### Other options
- **disableWarnings {Boolean}**: Determines whether or not warning messages will be output to the browser's console. Defaults to `false`.
#### Example
```js
var options = {
container: "myContainer",
icon: "/path/to/my/icon.png",
closable: false,
dict: {title: "My Company"},
focusInput: false,
gravatar: false
};
```
#### Dict Specification
A dict, short for dictionary, is an object that contains every piece of text the Lock needs to display. Different textual components are needed depending on what method you called to open the Lock. The following is an example of the dict used when the Lock is opened with the `emailcode` method:
```js
{
code: {
codeInputPlaceholder: "Your code",
footerText: "",
headerText: "Please check your email ({email})
You've received a message from us
with your passcode."
},
confirmation: {
success: "Thanks for signing in."
},
email: {
emailInputPlaceholder: "yours@example.com",
footerText: "",
headerText: "Enter your email to sign in or sign up."
},
title: "Auth0",
welcome: "Welcome {name}!"
}
```
When you open the Lock with `emailcode` or any other method available, you can override any value by providing a [dict option](#ui-options).
```js
lock.emailcode({
email: {
footerText: "You must agree to our terms of service"
},
title: "My Company"
});
```
The previous code will change the title displayed in the header and will display a footer when the Lock is asking the user for the email.
As you can see from the examples, some keys are _namespaced_ inside another object and some are not. In the first case, they are only used in a given screen, while in the latter can be used from any screen. Also, most of the values accept HTML tags. The exception are the the ones used as input placeholders. Finally, some strings can be interpolated, which means that they contain a placeholder which will be replaced before being displayed. For instance:
```js
lock.emailcode({
code: {
headerText: "The code has been sent to {email}"
}
});
```
Will cause the Lock to show the message _"The code has been sent to someone@auth0.com"_ when asking for the verification code to a user that entered the email _"someone@auth0.com"_.
You can check the [source code](src/dict/dicts.js) to see the actual dictionaries used by the Lock.
### Popup mode
A popup window can be displayed instead of redirecting the user to a social provider website. While this has the advantage of preserving page state, it has some issues. Often times users have popup blockers that prevent the login page from even displaying. There are also known issues with mobile browsers. For example, in recent versions of Chrome on iOS, the login popup does not get [closed properly](https://github.com/auth0/lock/issues/71) after login. For these reasons, we encourage developers to avoid this mode, even with Single Page Apps.
If you nevertheless decide to use it, you can activate popup mode by passing the option `popup: true` when calling `social`, `socialOrMagiclink`, `socialOrEmailcode`, or `socialOrSms`. A callback will be invoked with the usual arguments as the following example shows.
```js
lock.social({
connections: ["facebook", "twitter"],
popup: true
}, function(error, profile, id_token, access_token, state, refresh_token) {
if (!error) {
alert("User has logged in");
}
});
```
More information can be found in [Auth0's documentation](https://auth0.com/docs/libraries/lock/authentication-modes#popup-mode).
### Callbacks and Errors
As a rule of thumb, all callbacks passed to a method that opens the Lock are invoked when the job of the Lock can be considered done. The first argument of the callback is reserved for an error object. If an error occurred, the callback will be invoked with just the error object. If no error occurred, the callback will be invoked with `null` as the first argument, followed by any number of arguments it needs.
All error objects have an `error` and a `description` property. The first will contain a synthetic code used to identify the error, and the later will contain a more readable description. They may contain other useful properties according to the situation.
See each method's documentation for the specifics.
## Browser Compatibility
We ensure browser compatibility in Chrome, Safari, Firefox and IE >= 10. We currently use [zuul](https://github.com/defunctzombie/zuul) along with [Saucelabs](https://saucelabs.com) to run integration tests on each push.
## Contributing
Clone the repo and run the following commands:
```
npm install
npm start
```
Changes to the source code will be automatically rebuilt. To see the result, point your favorite browser to [http://localhost:3000/playground/](http://localhost:3000/playground/).
However, testing changes that way can be cumbersome because there are HTTP request involved which are being rate-limited. If your changes are scoped to the UI, you will be better off running:
```
npm run design
```
And pointing your browser to [http://localhost:3000/design/](http://localhost:3000/design/). It behaves just like `npm start` but requests to the [Auth0](https://auth0.com) API will be simulated.
### Running the tests
Tests can be run in [PhantomJS](http://phantomjs.org/) or in a web browser with the following commands:
```
npm run test:phantom
npm run test:browser
```
### Releasing a new version
Whenever a new commit is pushed to _master_, the CI will attempt to deploy a new release to [Github](https://github.com) and [npm](https://www.npmjs.com) if the tests pass and there isn't already a release for the version specified in the [package.json](package.json) file. See [bin/deploy](bin/deploy) for the details.
There is also a convenient [script](bin/version) to prepare a new release:
```
bin/version {patch,minor,major}
```
## Issue Reporting
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues.
## Author
[Auth0](auth0.com)
## License
This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.
[npm-image]: https://img.shields.io/npm/v/auth0-lock-passwordless.svg?style=flat-square
[npm-url]: https://npmjs.org/package/auth0-lock-passwordless
[strider-image]: https://ci.auth0.com/auth0/lock-passwordless/badge
[strider-url]: https://ci.auth0.com/auth0/lock-passwordless
[david-image]: http://img.shields.io/david/auth0/lock-passwordless.svg?style=flat-square
[david-url]: https://david-dm.org/auth0/lock-passwordless
[license-image]: http://img.shields.io/npm/l/auth0-lock-passwordless.svg?style=flat-square
[license-url]: #license
[downloads-image]: http://img.shields.io/npm/dm/auth0-lock-passwordless.svg?style=flat-square
[downloads-url]: https://npmjs.org/package/auth0-lock-passwordless