Webhooks error, Error: No X-Hub-Signature found on request

var createHandler = require("github-webhook-handler")
var handler = createHandler({ path: "/incoming", secret: "myhashsecret" })

this secret is the same as the secret set by GitHub backend.
Why did you report an error

?
Error: No X-Hub-Signature found on request
  • Why is Node.js efficient?

    my understanding is that traditional java and php will create new threads to handle blocked tasks. for Node.js from this diagram, the blocked tasks in the event queue are still left to the threads in the thread pool to handle the blocking events. ...

Menu