amazon-cognito-srp
v1.0.1
Published
Amazon Cognito SRP allows you to authenticate into Amazon Cognito by Username and Password through SRP based authentication (the USER_SRP_AUTH authentication flow).
Downloads
12,106
Maintainers
Readme
amazon-cognito-srp
Amazon Cognito SRP allows you to authenticate into Amazon Cognito by Username and Password through SRP based authentication (the USER_SRP_AUTH authentication flow).
Amazon Cognito SRP allows you to get the JWT access token, id token, refresh token by Username and Password through SRP authentication.
Keywords: AWS, Amazon, Cognito, Sign-in, Authentication, SRP, Secure, Remote, Password, Protocol, Access, Control, JWT
Example
const authResult: AuthResult = await amazonCognitoSrp.authenticate();
authResult output:
{
accessToken: string;
idToken: string;
refreshToken: string;
}
JavaScript Examples
const { AmazonCognitoSrp } = require('amazon-cognito-srp');
const amazonCognitoSrp = new AmazonCognitoSrp({
userPoolId: 'us-east-1_Gmmqbdhdd',
clientId: '70681titoqu1dq7ho24j8h197o',
username: '[email protected]',
password: 'test_password'
});
// If you run code in a sync function
amazonCognitoSrp.authenticate().then(result => {
console.log(result)
});
// If you run code in a async function
(async () => {
const result = await amazonCognitoSrp.authenticate();
console.log(result)
})();
TypeScript Examples
import { AmazonCognitoSrp } from 'amazon-cognito-srp';
import { AuthResult, Options } from 'amazon-cognito-srp/lib/types';
const options: Options = {
clientId: '70681titoqu1dq7ho24j8h197o',
password: 'test_password',
username: '[email protected]',
userPoolId: 'us-east-1_Gmmqbdhdd'
}
const amazonCognitoSrp = new AmazonCognitoSrp(options);
// If you run code in a sync function
amazonCognitoSrp.authenticate().then((authResult: AuthResult) => {
console.log(authResult)
});
// If you run code in a async function
const authResult: AuthResult = await amazonCognitoSrp.authenticate();
console.log(authResult);