aws-amplify/auth
importする際もaws-amplify/authを使う
code:ts
import { signInWithRedirect } from 'aws-amplify/auth'
// ❌️import { signInWithRedirect } from '@aws-amplify/auth'
v5 to v6のmigration guide
これが実質API refferecneになっている?不親切
auto signin
expoでv6使えないらしい
fetchAuthSession
JWT取れるやつ
docsのページが存在しない
code:返り値.ts
AuthSession {
tokens?: {
idToken?: JWT;
accessToken: JWT;
};
credentials?: {
accessKeyId: string;
secretAccessKey: string;
sessionToken?: string;
expiration?: Date;
};
identityId?: string;
userSub?: string;
}
Auth.signUp
Auto Sign-in
Legacy
Auth.confirmSignUp
Force Alias Creation
Auth.resendSignUp
Auth.signIn
Confirmation Required
Legacy
Auth.federatedSignIn
Custom Provider
Defaults
Identity Pools - DEPRECATED
Auth.confirmSignIn
Auth.setupTOTP
Auth.verifyTotpToken
Auth.completeNewPassword (DEPRECATED)
Auth.sendCustomChallengeAnswer (DEPRECATED)
Auth.getPreferredMFA
Auth.setPreferredMFA
Auth.getMFAOptions (DEPRECATED)
Auth.signOut
Auth.changePassword
Auth.forgotPassword
Auth.forgotPasswordSubmit
Auth.deleteUser
Auth.currentAuthenticatedUser (DEPRECATED)
Auth.currentUserPoolUser (DEPRECATED)
Auth.currentSession
Auth.userSession (DEPRECATED)
Auth.userAttributes
Auth.updateUserAttributes
Auth.deleteUserAttributes
Auth.verifyCurrentUserAttribute
Auth.verifyCurrentUserAttributeSubmit
Auth.verifyUserAttribute (DEPRECATED)
Auth.verifyUserAttributeSubmit (DEPRECATED)
Auth.rememberDevice
Auth.forgetDevice
Auth.currentCredentials (DEPRECATED)
Auth.currentUserCredentials (DEPRECATED)
Auth.currentUserInfo (DEPRECATED)
Auth.essentialCredentials (DEPRECATED)
Auth.verifiedContact (DEPRECATED)
Auth.disableSMS (DEPRECATED)
Auth.enableSMS (DEPRECATED)