I'm trying to make calls to my BBB server through Zapier webhhoks but I can't correctly calculate the checksum that must be appended to any call.
I read the documentation (https://docs.bigbluebutton.org/dev/webhooks.html#callback-format) but I can't understand the exact string upon which the checksum is generated (there's a point at the end of the paragraph where they say "And convert it to a string like in the example below:" but I see no example string afterwards)
I looked at how bbb calls should look like here: https://mconf.github.io/api-mate/ I've read the checksum should be generated in this way: sha1(++) I then assumed it could be something like: sha1(https://my.server.com/bigbluebutton/api/create?+meetingID=testmeeting&name=testmeeting&record=false+mysharedsecretkey)
It doesn't work though. Am I missing something? Any example of how that string between the two brackets should look like?