You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, since it's a requirement to use the same encoder= option that was used to sign, it isn't possible to remove this on the receiving endpoint of the webhook call. It would need to be updated on the signing side.
Suggest using encoder = encoding.RawEncoder on the signing side before calling webhook remote server so that the endpoint can use the same.
To be explicit: this is currently preventing webhooks from working as they are described in the documentation. And blocking any implementation.
The text was updated successfully, but these errors were encountered:
Python 3.8.5
I experienced this issue pyca/pynacl#525 while testing https://github.com/team-telnyx/telnyx-python/blob/master/telnyx/webhook.py
I used
pip3 install --upgrade telnyx
to install latest. It looks like this is a known bug that they don't plan to fix. There is a PR prepared that deprecates theencoder=
option from pynacl pyca/pynacl#523.Unfortunately, since it's a requirement to use the same
encoder=
option that was used to sign, it isn't possible to remove this on the receiving endpoint of the webhook call. It would need to be updated on the signing side.Suggest using
encoder = encoding.RawEncoder
on the signing side before calling webhook remote server so that the endpoint can use the same.To be explicit: this is currently preventing webhooks from working as they are described in the documentation. And blocking any implementation.
The text was updated successfully, but these errors were encountered: