Lab 4 - Auth via Cognito

In this Lab we will:

  • Create a Cognito User Pool
  • Configure API Gateway to use that user pool for authentication
  • Extend our frontend to allow sign-up and sign-in

You completed this lab if you:

  • Can sign-up a new user via the frontend
  • Can sign-in this user via the frontend
  • Can still shorten URLs

Why is this important?

Nearly every API needs some sort of authentication for users or other services. With AWS Cognito this tasks becomes easy. You can integrate with ApiGateway with nearly no effort and can take advantage of AWS’ Amplify Client library to authenticate your web or mobile clients.

Overview

At the end of this lab the url shortener will consist of the following components.

Diagram Lab 4

Cognito User Pool

Setting up a Cognito User Pool can be a bit tricky. In order to make it work, you need to:

Frontend Changes

In order to connect the frontend with Cognito and allow sign-in / sign-up, we need to:

  • Configure the App via aws-exports.js
  • Send the Authorization header with request that need to authorize (example)
  • Set the formType to signIn or signUp in order to show the correct widget

Hints