当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript auth0-lock.show函数代码示例

本文整理汇总了TypeScript中auth0-lock.show函数的典型用法代码示例。如果您正苦于以下问题:TypeScript show函数的具体用法?TypeScript show怎么用?TypeScript show使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了show函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: Promise

    return new Promise((resolve, reject) => {
      lock.on('authenticated', (authResult) => {

        if(authResult.error) {
          return reject(authResult.error);
        }

        const { accessToken, idToken, refreshToken } = authResult;

        lock.getUserInfo(accessToken, (error, profile) => {
          if(error) {
            return reject(error);
          }

          this.storage.store('profile', profile);
          this.storage.store('idToken', idToken);
          this.storage.store('accessToken', accessToken);
          this.storage.store('refreshToken', refreshToken);

          resolve();
        });
      });

      lock.show();
    });
开发者ID:IdleLands,项目名称:Play,代码行数:25,代码来源:auth.service.ts

示例2:

lock.on('authorization_error', (error) => {
  lock.show({
    flashMessage: {
      type: 'error',
      text: error.error_description
    }
  });
});
开发者ID:IdleLands,项目名称:Play,代码行数:8,代码来源:auth.service.ts

示例3: Promise

 return new Promise((resolve: any, reject: any) => {
     let options: any = {authParams: { scope: 'openid profile' }};
     lock.show(options, function(err: any, profile: Profile, token: any) {
         if (err) {
             console.log(err);
             return reject(err);
         }
         localStorage.setItem('id_token', token);
         interceptor.registerAuthTokenInterceptor(token);
         interceptor.registerUserInterceptor(profile.user_id);
         model.setProfile(profile as Profile);
         resolve();
     });
 });
开发者ID:a10nik,项目名称:borbu-images,代码行数:14,代码来源:auth.service.ts

示例4: moment

 (state:IState)=> {
     lock.show({
         container: 'login-container',
         connections: ['google-oauth2']
     }, (err:any, p:any, t:string) => {
         if (!err) {
             const identity = ( p.identities || [] ).find(obj => p.user_id === `${obj.provider}|${obj.user_id}`);
             const profile = Auth0Profile.fromJsonObj(p);
             const idToken = t;
             const expirationDate = moment().add(identity ? identity.expires_in : 30, 'second');
             Actions.auth.next(saveStorage(idToken, expirationDate, profile));
         }
     });
     return state;
 }
开发者ID:dohr-michael,项目名称:typescript-react-test,代码行数:15,代码来源:index.ts

示例5:

export const logIn = () => (dispatch) => {
  lock.show()
}
开发者ID:geirsagberg,项目名称:Gaver,代码行数:3,代码来源:index.ts


注:本文中的auth0-lock.show函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。