alexa-verifier-middleware
Version:
An expressjs middleware that verifies HTTP requests sent to an Alexa skill are sent from Amazon.
9 lines (7 loc) • 507 B
TypeScript
import {Request, Response, NextFunction} from "express"
/**
* This function lookup for requests that include a signaturecertchainurl HTTP in header, parse out the entire body as a text string, and set a flag on the request object so others don't try to parse the body again.
* {@link https://github.com/alexa-js/alexa-verifier-middleware See the Documentation}
*/
declare function alexaVerifierMiddleware (req: Request, res: Response, next: NextFunction): NextFunction
export = alexaVerifierMiddleware