organization · inferred from evidence
Telnyx
The organization maintaining the Telnyx Node.js SDK and related libraries.
- TelnyxWebhook.verify() throws TypeError: Cannot read properties of undefined (reading 'detached') in ESM
This was an SDK ESM/CJS interop bug with the tweetnacl namespace import. Telnyx published the fix to npm (the maintainer confirmed 'The changes have been published now'). Upgrade `telnyx` to the latest version and `TelnyxWebhook.verify()` w
- Telnyx webhook 'Signature is invalid and does not match the payload' (Node)
The signature must be verified against the raw request body bytes, not the parsed JSON object. Capture the raw buffer with body-parser's `verify` option: ```js app.use(bodyParser.json({ verify(req, res, buffer) { req.rawBody = buffer; } })