https://github.com/aws-amplify/amplify-js/tree/master/packages/amazon-cognito-identity-js
Vue.jsで作成したwebアプリ内で、上記のAWSSDKを利用して、AWSの認証情報を取得することは実装できたのですが、画面リロードをすると、おそらくAWS.config.credentialsインスタンスが消えてしまい
クレデンシャルがないとエラーがでます。
Vuexのストアを使って、ローカルストレージに保存しようとしているのですが、
stateでAWS.config.credentialsを管理することは可能でしょうか?
単純に下記のような記述をすると「Unexpected token, expected "," 」とでるので
キーバリューのような形式にする必要がなるのでしょうか?
state: { AWS.config.credentials },
↓cognito認証の例
import * as AWS from 'aws-sdk/global'; var authenticationData = { Username: 'username', Password: 'password', }; var authenticationDetails = new AmazonCognitoIdentity.AuthenticationDetails( authenticationData ); var poolData = { UserPoolId: '...', // Your user pool id here ClientId: '...', // Your client id here }; var userPool = new AmazonCognitoIdentity.CognitoUserPool(poolData); var userData = { Username: 'username', Pool: userPool, }; var cognitoUser = new AmazonCognitoIdentity.CognitoUser(userData); cognitoUser.authenticateUser(authenticationDetails, { onSuccess: function(result) { var accessToken = result.getAccessToken().getJwtToken(); //POTENTIAL: Region needs to be set if not already set previously elsewhere. AWS.config.region = '<region>'; AWS.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: '...', // your identity pool id here Logins: { // Change the key below according to the specific region your user pool is in. 'cognito-idp.<region>.amazonaws.com/<YOUR_USER_POOL_ID>': result .getIdToken() .getJwtToken(), }, }); //refreshes credentials using AWS.CognitoIdentity.getCredentialsForIdentity() AWS.config.credentials.refresh(error => { if (error) { console.error(error); } else { // Instantiate aws sdk service objects now that the credentials have been updated. // example: var s3 = new AWS.S3(); console.log('Successfully logged!'); } }); }, onFailure: function(err) { alert(err.message || JSON.stringify(err)); }, });
あなたの回答
tips
プレビュー