admin管理员组

文章数量:1352186

I am using javascript sdk for AWS cognito and able to login with aws cognito and receiving tokens in response.

I can see that the user session is valid until I refresh the page. Please suggest how the user session can persist after refreshing the page.

Below is my code.

function getSession() {
let poolData = {
    UserPoolId: _config.cognito.userPoolId, // Your user pool id here
    ClientId: _config.cognito.clientId, // Your client id here
};

//alert(sessionStorage.getItem("SessionName"));


let userPool = new AmazonCognitoIdentity.CognitoUserPool(poolData);
cognitoUser = userPool.getCurrentUser();
cognitoUser.getSession(function (err, session) {
    if (err) {
        alert(err);
        return;
    }
    console.log('session validity: ' + session.isValid());
    //Set the profile info
    cognitoUser.getUserAttributes(function (err, result) {
        if (err) {
            console.log(err);
            return;
        }
        console.log("------>>" + result);
        //document.getElementById("email_value").innerHTML = result[2].getValue();  
    });

});

}

I am using javascript sdk for AWS cognito and able to login with aws cognito and receiving tokens in response.

I can see that the user session is valid until I refresh the page. Please suggest how the user session can persist after refreshing the page.

Below is my code.

function getSession() {
let poolData = {
    UserPoolId: _config.cognito.userPoolId, // Your user pool id here
    ClientId: _config.cognito.clientId, // Your client id here
};

//alert(sessionStorage.getItem("SessionName"));


let userPool = new AmazonCognitoIdentity.CognitoUserPool(poolData);
cognitoUser = userPool.getCurrentUser();
cognitoUser.getSession(function (err, session) {
    if (err) {
        alert(err);
        return;
    }
    console.log('session validity: ' + session.isValid());
    //Set the profile info
    cognitoUser.getUserAttributes(function (err, result) {
        if (err) {
            console.log(err);
            return;
        }
        console.log("------>>" + result);
        //document.getElementById("email_value").innerHTML = result[2].getValue();  
    });

});

}

Share Improve this question asked Mar 9, 2019 at 13:49 Amit PandeAmit Pande 1431 gold badge1 silver badge4 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

good news - the SDK does this for you. Check out their code for the getsession method

You can see they store the tokens to local storage for you.

To view the tokens from Google Chrome, go to developer tools -> Application. You should see a 'Storage' section on the left hand side. Open Local Storage, the tokens are saved under the URL of the application.

You should not need to access these token directly, the SDK will fetch and save the tokens as required when you call different methods.

本文标签: javascriptHow to persist Cognito User SessionStack Overflow