How to use the auth0-lock.default function in auth0-lock

To help you get started, we’ve selected a few auth0-lock examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ReactNativeGallery / reactnative-gallery-web / utils / auth.js View on Github external
const getLock = (options) => {
  // eslint-disable-next-line
  const Auth0Lock = require('auth0-lock').default
  return new Auth0Lock(process.env.AUTH_ID, process.env.AUTH_DOMAIN, options)
}
github auth0-blog / next6-auth0 / utils / lock.js View on Github external
const getLock = (options) => {
  const config = require('../config.json')
  const Auth0Lock = require('auth0-lock').default
  return new Auth0Lock(config.AUTH0_CLIENT_ID, config.AUTH0_CLIENT_DOMAIN, options)
}
github RootBank / dinosure / utils / lock.js View on Github external
const getLock = (options) => {
  const config = require('../config.json');
  const Auth0Lock = require('auth0-lock').default;
  return new Auth0Lock(config.AUTH0_CLIENT_ID, config.AUTH0_CLIENT_DOMAIN, options);
};
github conveyal / analysis-ui / lib / utils / auth0.js View on Github external
function initializeLock() {
  const Auth0Lock = require('auth0-lock').default
  return new Auth0Lock(CLIENT_ID, DOMAIN, {
    auth: {
      params: {
        responseType,
        scope
      },
      redirect: false
    },
    allowSignUp: false,
    theme: {
      logo,
      primaryColor
    },
    closable: false,
    languageDictionary: {
      title: message('authentication.logIn')
    }
github olymp / olymp / packages / auth / auth0.es6 View on Github external
require => {
        const Auth0Lock = require('auth0-lock').default;

        const {
          title = 'olymp',
          domain = process.env.AUTH0_DOMAIN,
          clientID = process.env.AUTH0_CLIENT_ID,
          color = 'green',
          logo = 'http://res.cloudinary.com/djyenzorc/image/upload/v1508057396/qkg/ci3onnwcl2isotkvsvrp.png',
        } = this.config;

        const lock = new Auth0Lock(clientID, domain, {
          languageDictionary: {
            title,
          },
          language: 'de',
          theme: {
            logo,
            primaryColor: color,
          },
        });
        let closing = false;
        lock.on('authenticated', authResult => {
          if (!authResult || !authResult.accessToken) {
            return;
          }
          lock.getUserInfo(authResult.accessToken, (error, profile) => {
            if (error) {

auth0-lock

Auth0 Lock

MIT
Latest version published 5 months ago

Package Health Score

83 / 100
Full package analysis