Giter Club home page Giter Club logo

auth_with_aws_cognito's Introduction

Express Application Example

This example demonstrates how to build an [express] application for AWS SignUp , Login,logout ,forget password , change password based on Cognito Service.

Overview

This example built based on [aws-cognito-service].

Prerequisite

You should install all dependencies.

  • Nodejs
  • AWS CLI
  • NPM aws-sdk
  • AWS account with User Role auth (userName , password)

Usage

npm install

Test locally

Do you not want to deploy this example? Or do you want to test before deploy? You can run it locally.

npm run start:dev

Production build

Do you not want to deploy this example? Or do you want to test before deploy? You can run it locally.

npm run build

Production build run

Do you not want to deploy this example? Or do you want to test before deploy? You can run it locally.

node dist/index.js

API Routes

  • Request Body
   {
           "name":"name",
           "password":"password",
           "email":"userEmail",
           "phoneNumber":"phoneNumber"

    }

Resend Confirm Code to User => Post Type (http://localhost:{port}/api/v1/user/cognito/resend)

  • Request Body
   {
           "email":"email"

    }

Confirm Code For Signup User => Post Type (http://localhost:{port}/api/v1/user/cognito/confirm)

  • Request Body
   {
           "email":"email" ,
           "code":"code"

    }

User Forget Password => Post Type (http://localhost:{port}/api/v1/user/cognito/forget)

  • Request Body
   {
           "email":"email"


    }

User Forget Password Reset => Post Type (http://localhost:{port}/api/v1/user/cognito/passConfirm)

  • Request Body
   {
           "email":"email" ,
           "code":"code" ,
           "newPassword":"newPassword"


    }

  • Request Body
 {
      "email":"email"
      "password":"password"
 }

User Change Password => Post Type (http://localhost:{port}/api/v1/user/cognito/change)

  • Request Body
   {

           "oldPassword":"oldPassword",
           "newPassword":"newPassword",
           "token" :"token"   // Access Token

    }

Deactive/Active User => Post Type (http://localhost:{port}/api/v1/user/cognito/disable)

  • Request Body
  {
      "email" :"email",
       "type":"Active"    // Pass this key to active user other wise not pass
  }

User Single device/global device signout => Post Type (http://localhost:{port}/api/v1/user/cognito/signout)

  • Request Body
  {
      "deviceKey" :"deviceKey",
      "email" : "eamil",
      "type":"Single Device"    // for single device logout key other wise not pass
  }

  • Request Body
  {
      "pageSize" :"pageSize",             // for pagination
      "nextPageToken" : "nextPageToken",   // for pagination

  }

User Refresh Session Token => Post Type (http://localhost:{port}/api/v1/user/cognito/refreshSession)

  • Request Body
  {
      "refreshToken" :"refreshToken",
      "accessToken" : "accessToken",

  }

  • Request Body
  {
      "email" :"email",


  }

auth_with_aws_cognito's People

Contributors

pankajkmr123 avatar

Watchers

Pankaj avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.