@gmaclennan Hello, I was using `github-webhook-middleware` successfully over `HTTP`, however since I've setup my `SSL`, the package has stopped working. Here's my code: ``` const githubMiddleware = require('github-webhook-middleware')({ secret: config.githubWebhookSecret }); app.post('/webhook', githubMiddleware, (req, res) => { console.log('worked...'); }); ``` I am not getting any output. I have even tried disabling `SSL` certificate validation on GitHub. Is this package expected to work with `SSL`?
@gmaclennan
Hello,
I was using
github-webhook-middlewaresuccessfully overHTTP, however since I've setup mySSL, the package has stopped working. Here's my code:I am not getting any output. I have even tried disabling
SSLcertificate validation on GitHub. Is this package expected to work withSSL?