Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

compwright/express-sns-validator

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

express-sns-validator

Build Status Dependency Status Download Status Sponsor on GitHub

ExpressJS middleware for verifying Amazon SNS notifications using sns-validator (no dependency on the AWS SDK).

Requirements

  • NodeJS 10+
  • ExpressJS 4+
  • body-parser 1.4+

Installation

npm install --save express-sns-validator

Usage

Add to the route handler you will use to subscribe to Amazon SNS notifications. If the request does not validate, an HTTP 400 will be returned.

Note: you need body-parser to parse the JSON body from SNS.

const express = require('express')
const bodyParser = require('body-parser')
const snsMiddleware = require('express-sns-validator')

const app = express()

app.use(bodyParser.json()) // required for express-sns-validator to work properly

app.post('/notifications/sns', snsMiddleware(), (req, res) => {
  // do stuff with req.body
});

License

MIT License

About

ExpressJS middleware for verifying Amazon SNS notifications using sns-validator

Topics

Resources

Stars

Watchers

Forks

Releases

Sponsor this project

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.