-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No checksum in the webhook callback request #8
Comments
Try to set Then But I don't know if this configuration resists over the time...! |
Ok. As far as I could see from the code, this flag sets the authorization bearer in the header. |
Well, IMHO, I think that the BBB-Secret should not be transmitted over the network. On a non-secured connection, it means the BBB-Secret is revealed, which is too dangerous... |
And right you are. |
@swayhead Right now I'm facing the same problem (even over a secure network), I looked over headers and found an |
Here is an implementation https://github.com/dreammall-earth/dreammall.earth/blob/master/backend/src/api/BBB.ts#L93 |
My application is receiving callback POST requests from the webhook with data payload as expected.
However, there is no checksum in the URL included.
I registered the callback URL as https://xxx.yy/kivi/registerEvent/
I expect to receive the request as https://xxx.yy/kivi/registerEvent/?checksum=12345 like mentioned in the documentation https://docs.bigbluebutton.org/dev/webhooks.html#callback-format
Instead I am getting the original URL without parameters:
Is there any adjustment on the server I am missing?
Thanks
The text was updated successfully, but these errors were encountered: