integration-platform-example
integration-platform-example copied to clipboard
An example kanban application which explores the ways developers can build apps on Sentry's integration platform
A small fix to use a constant-time comparison on the HMAC signatures for the webhook payloads. Using the constant-time compare will help defend against timing attacks.
### Environment What version are you running? Etc. ### Steps to Reproduce 1. We created a public integration and installed it 2. the redirect URL took us to the ACME...
### Environment Node.js 18 ### Steps to Reproduce 1. Implemented integration following TS example. ``` function getSignatureBody(req: Request): string { const stringifiedBody = JSON.stringify(req.body); // HACK: This is necessary since...