本文整理匯總了TypeScript中aws-amplify.Auth類的典型用法代碼示例。如果您正苦於以下問題:TypeScript Auth類的具體用法?TypeScript Auth怎麽用?TypeScript Auth使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Auth類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: async
export const confirmSignUp = async (email: string, authCode: string): Promise<IConfirmSignUpResult> => {
try {
const data = await Auth.confirmSignUp(email, authCode)
console.log('Proxy confirmSignup Success : ', data)
return { data }
} catch (error) {
console.log('Proxy confirmSignup Fail : ', error)
return { error }
}
}
示例2: async
export const setNewPassword = async (user: ICognitoUser, password: string, requiredAttributes: [string]): Promise<IResetNewPassword> => {
try {
const data = await Auth.completeNewPassword(user, password, requiredAttributes)
console.log('Proxy setNewPassword Success : ', data)
return { data }
} catch (error) {
console.log('Proxy setNewPassword Fail : ', error)
return { error }
}
}
示例3: async
export const resetPassword = async (email: string, authCode: string, password: string): Promise<IResetPasswordResult> => {
try {
await Auth.forgotPasswordSubmit(email, authCode, password)
console.log('Proxy resetPassword Success')
return { data: { message: 'Password Reset Successful. Please login again' } }
} catch (error) {
console.log('Proxy resetPassword Fail : ', error)
return { error }
}
}
示例4: async
export const signOut = async (): Promise<null> => {
try {
Auth.signOut()
console.log('Proxy SignOut Success')
return null
} catch (error) {
console.log('Proxy SignOut Fail : ', error)
return null
}
}
示例5: async
export const signIn = async (username: string, password: string): Promise<ISignInResult> => {
try {
const data = await Auth.signIn(username, password)
console.log('Proxy signIn Success : ', data)
return { data }
} catch (error) {
console.log('Proxy signIn Fail : ', error)
return { error }
}
}
示例6: async
export const signUp = async (userProperties: IUserProps): Promise<ISignUpResult> => {
try {
const data = await Auth.signUp(userProperties)
console.log('Proxy signUp Success : ', data)
return { data }
} catch (error) {
console.log('Proxy signUp Fail : ', error)
return { error }
}
}
示例7: async
export const checkAuthState = async (): Promise<ICheckAuthStateResult> => {
try {
// get current user
const user = await Auth.currentAuthenticatedUser()
// console.log('Proxy checkAuthState Success ', user)
return { data: { user } }
} catch (error) {
// console.log('Proxy checkAuthState Fail : ', error)
return { error }
}
}
示例8: check
function check(authState: Subject<AuthState>) {
// check for current authenticated user to init authState
Amplify.Auth.currentAuthenticatedUser()
.then(user => {
logger.debug('has authenticated user', user);
authState.next({ state: 'signedIn', user: user });
})
.catch(err => {
logger.debug('no authenticated user', err);
authState.next({ state: 'signedOut', user: null });
});
};
示例9: fbCallback
fbCallback(message: string, reponse: any) {
console.log('LoginComponent: fbCallback --> result ' + JSON.stringify(reponse));
const that = this;
if (message === null) {
Auth.federatedSignIn(
'facebook',
{
token: reponse.accessToken,
expires_at: reponse.expiresIn
},
reponse.userID
).then(credentials => {
console.log('Auth.federatedSignIn FULFILLED credentials --> ' + JSON.stringify(credentials));
that.router.navigate(['/ticket']);
}
).catch(err => {
console.log('Auth.federatedSignIn REJECTED-->' + err);
});
} else {
const toastOptions: ToastOptions = {
title: 'Error',
msg: message,
showClose: true,
timeout: 15000,
onAdd: (toast: ToastData) => {
console.log('Toast ' + toast.id + ' has been added!');
},
onRemove: function(toast: ToastData) {
console.log('Toast ' + toast.id + ' has been removed!');
}
};
// Add see all possible types in one shot
this.toastaService.error(toastOptions);
}
}