0.1.1 • Published 6 years ago

bragg-cognito-idp v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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