本文整理汇总了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);
}
}