amazon-cognito-auth-react-native
v1.0.0
Published
Promise wrappers for Amazon Cognito Auth JavaScript SDK
Downloads
9
Maintainers
Readme
Promise wrappers for Amazon Cognito Auth SDK
Amazon Cognito Auth SDK for JavaScript
You can now use Amazon Cognito Auth to easily add sign-in and sign-out to your mobile and web apps. Your user pool in Amazon Cognito is a fully managed user directory that can scale to hundreds of millions of users, so you don't have to worry about building, securing, and scaling a solution to handle user management and authentication.
Introduction
The Amazon Cognito Auth SDK for JavaScript simplifies adding sign-up, sign-in with user profile functionality to web apps.
Configuration
The Amazon Cognito Auth SDK for JavaScript requires three configuration values from your AWS Account in order to access your Cognito User Pool:
- An User Pool App Client Id (required): e.g.
<TODO: add ClientId>
- When creating the App, if the generate client secret box was checked, for /oauth2/token endpoint which gets the user's tokens, the client must pass its client_id and client_secret in the authorization header. For more info, please reference here.
- An App Web Domain (required): e.g.
<TODO: add App Web Domain>
- When you click the
Domain name
tab, you can create a domain name there and save it for record.
- When you click the
- Scope Array (required):
['<TODO: your scope array here, try "phone", "email", ...>'],
e.g.['phone', 'email', 'profile','openid', 'aws.cognito.signin.user.admin']
(to get more info about scope, please reference "scope" section of our doc)- When you click the
App settings
tab, you can select the identity provider which you want to use on your App. - In the
sign in and sign out URLs
tab, you can set theCallback URLs
andSign out URLs
. (both are required) - Under the
OAuth2.0
tab, you can select the OAuth flows and scopes enabled for this app. (both are required)
- When you click the
- IdentityProvider (Optional): Pre-selected identity provider (this allows to automatically trigger social provider authentication flow).e.g.
Facebook
- UserPoolId (Optional): e.g.
<TODO: add UserPoolId>
- AdvancedSecurityDataCollectionFlag (Optional): boolean flag indicating if the data collection is enabled to support cognito advanced security features. By default, this flag is set to true.
The AWS Console for Cognito User Pools can be used to get or create these values.
Note that the various errors returned by the service are valid JSON so one can access the different exception types (err.code) and status codes (err.statusCode).
Installation
Using NPM
> npm install --save amazon-cognito-auth-js-promises
Importing
// Modules, e.g. Webpack:
var AmazonCognitoIdentity = require('amazon-cognito-auth-js-promises');
var CognitoAuth = AmazonCognitoIdentity.CognitoAuth;
// ES Modules, e.g. transpiling with Babel
import {CognitoAuth} from 'amazon-cognito-auth-js-promises';
Usage
Use case 1.
Registering an auth with the application. You need to create a CognitoAuth object by providing a App client ID, a App web domain, a scope array, a sign-in redirect URL, and a sign-out redirect URL: (Identity Provider, UserPoolId and AdvancedSecurityDataCollectionFlag are optional values)
/*
TokenScopesArray
Valid values are found under:
AWS Console -> User Pools -> <Your user pool> -> App Integration -> App client settings
Example values: ['profile', 'email', 'openid', 'aws.cognito.signin.user.admin', 'phone']
RedirectUriSignOut
This value must match the value specified under:
AWS Console -> User Pools -> <Your user pool> -> App Integration -> App client settings -> Sign out URL(s)
*/
var authData = {
ClientId : '<TODO: add ClientId>', // Your client id here
AppWebDomain : '<TODO: add App Web Domain>',
TokenScopesArray : ['<TODO: add scope array>'], // e.g.['phone', 'email', 'profile','openid', 'aws.cognito.signin.user.admin'],
RedirectUriSignIn : '<TODO: add redirect url when signed in>',
RedirectUriSignOut : '<TODO: add redirect url when signed out>',
IdentityProvider : '<TODO: add identity provider you want to specify>', // e.g. 'Facebook',
UserPoolId : '<TODO: add UserPoolId>', // Your user pool id here
AdvancedSecurityDataCollectionFlag : '<TODO: boolean value indicating whether you want to enable advanced security data collection>', // e.g. true
Storage: '<TODO the storage object>' // OPTIONAL e.g. new CookieStorage(), to use the specified storage provided
};
// Modules, e.g. Webpack:
var auth = new AmazonCognitoIdentity.CognitoAuth(authData);
or
// ES Modules, e.g. transpiling with Babel
var auth = new CognitoAuth(authData);
You can also set state
parameter:
auth.setState(<state parameter>);
Use case 2.
Sign-in using startSession()
method:
This method always starts a new session by redirecting the current screen to the congnito hosted UI, irrespective of valid session exists or not.
auth.startSession();
Sign-in using getSession()
method:
This method checks whether a valid session exists or not. if valid session exists it will return signInUserSession. (TokenScopes, IdToken, AccessToken,[RefreshToken]).
Note: if you use authorization code grant flow it will automatically refresh expired toke using the refresh token. (if valid refresh token exists)
auth.getSession();
// return Promise <signInUserSession>
Use case 3.
Cache tokens and scopes
For the cache tokens and scopes, use the parseCognitoWebResponse(Response)
method, e.g. the response is the current window url:
var curUrl = window.location.href;
auth.parseCognitoWebResponse(curUrl);
Get cached token and scops
To get cached tokens and scopes, use the getCachedSession()
method.
auth.getCachedSession()
// return signInUserSession
// {
// IdToken: idToken,
// AccessToken: accessToken,
// RefreshToken: refreshToken,
// TokenScopes: tokenScopes,
// };
Check cached session validity
To check cached tokens validity use, use the isValid()
method.
auth.getCachedSession().isValid()
// return true or false
Refresh current session (Only available with authorization code grant flow)
To refresh the current session using refresh token, use the refreshSession()
method.
const cachedSession = auth.getCachedSession();
auth.refreshSession(cachedSession.getRefreshToken().getToken())
// Return Promise <signInUserSession>
// {
// IdToken: idToken,
// AccessToken: accessToken,
// RefreshToken: refreshToken,
// TokenScopes: tokenScopes,
// };
Use case 4.
Sign-out using signOut()
:
auth.signOut();
Important to know
By default, the SDK uses implicit flow(token flow), if you want to enable authorization code grant flow, you need to call useCodeGrantFlow().
var auth = new CognitoAuth(authData);
auth.useCodeGrantFlow();