Amazon Cognito With java Impl : Basic Tutorial

Amazon Cognito With java Impl : Basic Tutorial

What is Amazon Cognito ?

Amazon Cognito is fully managed authentication service provider,where application users can sign in / signUp through social identity providers such as Google, Facebook, and Amazon, and through enterprise identity providers such as Microsoft Active Directory

As Micorservice based Application are highly used, where we can use Amazon cognito as our login service readily instead of re-inventing the wheel,

This link has the basic feature of the Aws cognito Implementation where it can be used in any Java Project * AWS Cognito Factory Method Repo Link *

Basic Usage

  • Step 1 : Add As Maven Repository
  1. Add a Repository in pom.xml
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

  1. Add into Dependency list
<dependency>
    <groupId>com.gitlab.ashrithgn</groupId>
    <artifactId>amazoncognitofactory</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

JitPack will check out the code and build it. So you'll end up downloading the jar.

  • Step 2: Create an instance By calling a Constructor
  • Step 3: Use method like registerUser,userLogin,authorize