验证github-webhook-secret 验证在发送的。该secret将用作在X-Hub-Signature标头中生成HMAC十六进制摘要值的密钥。 安装 :building_construction: $ npm install --save verify-github-webhook-secret 或者如果您使用 :cat: $ yarn add verify-github-webhook-secret 用法 :hammer: 导出的函数需要一个和您的个人secret字符串。如果接收到的机密有效或无效,它将返回一个布尔值的Promise。 例如,可以将其与,如下所示: import micro from 'micro' ; import { verifySecret } from 'verify-github-webhook-secret' ; const server = micro ( async ( req ) => { cons