In this module you'll create an Amazon Cognito user pool to manage your users' accounts. You'll deploy pages that enable customers to register as a new user, verify their email address, and sign into the site.
When users visit your website they will first register a new user account. For the purposes of this workshop we'll only require them to provide an email address and password to register. However, you can configure Amazon Cognito to require additional attributes in your own applications.
After users submit their registration, Amazon Cognito will send a confirmation email with a verification code to the address they provided. To confirm their account, users will return to your site and enter their email address and the verification code they received. You can also confirm user accounts using the Amazon Cognito console if you want to use fake email addresses for testing.
After users have a confirmed account (either using the email verification process or a manual confirmation through the console), they will be able to sign in. When users sign in, they enter their username (or email) and password. A JavaScript function then communicates with Amazon Cognito, authenticates using the Secure Remote Password protocol (SRP), and receives back a set of JSON Web Tokens (JWT). The JWTs contain claims about the identity of the user and will be used in the next module to authenticate against the RESTful API you build with Amazon API Gateway.
❗ Ensure you've completed the Static Web hosting step before beginning the workshop.
Each of the following sections provides an implementation overview and detailed, step-by-step instructions. The overview should provide enough context for you to complete the implementation if you're already familiar with the AWS Management Console or you want to explore the services yourself without following a walkthrough.
Amazon Cognito provides two different mechanisms for authenticating users. You can use Cognito User Pools to add sign-up and sign-in functionality to your application or use Cognito Identity Pools to authenticate users through social identity providers such as Facebook, Twitter, or Amazon, with SAML identity solutions, or by using your own identity system. For this module you'll use a user pool as the backend for the provided registration and sign-in pages.
Use the Amazon Cognito console to create a new user pool using the default settings. Once your pool is created, note the Pool Id. You'll use this value in a later section.
✅ Step-by-step directions
- Go to the Amazon Cognito Console
- Choose Manage your User Pools.
- Choose Create a User Pool
- Provide a name for your user pool such as
WildRydes
, then select Review Defaults - On the review page, click Create pool.
- Note the Pool Id on the Pool details page of your newly created user pool.
From the Amazon Cognito console select your user pool and then select the App clients section. Add a new app and make sure the Generate client secret option is deselected. Client secrets aren't supported with the JavaScript SDK. If you do create an app with a generated secret, delete it and create a new one with the correct configuration.
✅ Step-by-step directions
- From the Pool Details page for your user pool, select App clients from the General settings section in the left navigation bar.
- Choose Add an app client.
- Give the app client a name such as
WildRydesWebApp
. - Uncheck the Generate client secret option. Client secrets aren't supported for use with browser-based applications.
- Choose Create app client.
- Note the App client id for the newly created application.
The /js/config.js file contains settings for the user pool ID, app client ID and Region. Update this file with the settings from the user pool and app you created in the previous steps and commit the file back to your git repository.
✅ Step-by-step directions
-
On your Cloud9 development environment open
js/config.js
-
Update the
cognito
section with the correct values for the user pool and app you just created. You can find the value foruserPoolId
on the Pool details page of the Amazon Cognito console after you select the user pool that you created.You can find the value for
userPoolClientId
by selecting App clients from the left navigation bar. Use the value from the App client id field for the app you created in the previous section.The value for
region
should be the AWS Region code where you created your user pool. E.g.us-east-1
for the N. Virginia Region, orus-west-2
for the Oregon Region. If you're not sure which code to use, you can look at the Pool ARN value on the Pool details page. The Region code is the part of the ARN immediately afterarn:aws:cognito-idp:
.The updated config.js file should look like this. Note that the actual values for your file will be different:
window._config = { cognito: { userPoolId: 'us-west-2_uXboG5pAb', // e.g. us-east-2_uXboG5pAb userPoolClientId: '25ddkmj4v6hfsfvruhpfi7n4hv', // e.g. 25ddkmj4v6hfsfvruhpfi7n4hv region: 'us-west-2' // e.g. us-east-2 }, api: { invokeUrl: '' // e.g. https://rc7nyt4tql.execute-api.us-west-2.amazonaws.com/prod, } };
-
Save the modified file making sure the filename is still
config.js
. -
Commit the changes to your git repository:
$ git add js/config.js $ git commit -m "configure cognito" $ git push ... Counting objects: 4, done. Compressing objects: 100% (4/4), done. Writing objects: 100% (4/4), 415 bytes | 415.00 KiB/s, done. Total 4 (delta 3), reused 0 (delta 0) To https://git-codecommit.us-east-1.amazonaws.com/v1/repos/wildrydes-site 7668ed4..683e884 master -> master
Amplify Console should pick up the changes and begin building and deploying your web application.
Note: Instead of having you write the browser-side code for managing the registration, verification, and sign in flows, we provide a working implementation in the assets you deployed in the first module. The cognito-auth.js file contains the code that handles UI events and invokes the appropriate Amazon Cognito Identity SDK methods. For more information about the SDK, see the project page on GitHub.
✅ Step-by-step directions
-
Visit
register.html
under your website domain, or choose the Giddy Up! button on the homepage of your site. -
Complete the registration form and choose Let's Ryde. You can use your own email or enter a fake email. Make sure to choose a password that contains at least one upper-case letter, a number, and a special character. Don't forget the password you entered for later. You should see an alert that confirms that your user has been created.
-
Confirm your new user using one of the two following methods.
-
If you used an email address you control, you can complete the account verification process by visiting
/verify.html
under your website domain and entering the verification code that is emailed to you. Please note, the verification email may end up in your spam folder. For real deployments we recommend configuring your user pool to use Amazon Simple Email Service to send emails from a domain you own. -
If you used a dummy email address, you must confirm the user manually through the Cognito console.
- From the AWS console, click Services then select Cognito under Security, Identity & Compliance.
- Choose Manage your User Pools
- Select the
WildRydes
user pool and click Users and groups in the left navigation bar. - You should see a user corresponding to the email address that you submitted through the registration page. Choose that username to view the user detail page.
- Choose Confirm user to finalize the account creation process.
-
After confirming the new user using either the
/verify.html
page or the Cognito console, visit/signin.html
and log in using the email address and password you entered during the registration step. -
If successful you should be redirected to
/ride.html
. You should see a notification that the API is not configured.
🔑 Amazon Cognito provides two different capabilities for managing users, federated identities and user pools. Amazon Cognito user pools can handle almost every aspect about managing users, their login credentials, handling password resets, multifactor authentication and much more!
🔧 In this module you've used user pools to create a completely hosted and managed user management system that will allow us to authenticate your users and manage their user information. From there you've updated the website to use the user pool and utlized the AWS SDKs to provide a signin form on the site.
✅ After you have successfully logged into your web application, you can proceed to the next module, Serverless Backend.
- Try copying the auth_token you've received and paste that into an online JWT Decoder to understand what this token means for your application