Skip to content

SimonJang/bragg-cognito-idp

Repository files navigation

bragg-cognito-idp Build Status

Bragg middleware for AWS Cognito Userpool triggers

About

AWS Cognito Userpools uses different triggers to customize the authentication flow. The bragg-cognito-idp middleware for bragg provides 3 triggers that are essential for a custom implementation of the authentication flow.

Install

$ npm install bragg-cognito-idp

Usage

const app = require('bragg');
const router = require('bragg-router');
const cognito = require('bragg-cognito-idp');

router.post('idp:DefineAuthChallenge', ctx => {
	ctx.body = ctx.request.body
});

router.post('idp:CreateAuthChallenge', ctx => {
	ctx.body = ctx.request.body
});

router.post('idp:VerifyAuthChallengeResponse', ctx => {
	ctx.body = ctx.request.body
});

app.use(cognito());
app.use(router.routes());

exports.handler = app.listen();

API

cognito()

Install the cognito middleware.

License

MIT © Simon Jang

About

Cognito Userpool middleware for bragg

Resources

License

Stars

Watchers

Forks

Packages

No packages published