當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。