@bobber205
This is my code for the GET request on my webhook - python
crc = request.args['crc_token']
crc = str(crc)
validation = hmac.new(
key=consumer_secret,
msg=crc,
digestmod = hashlib.sha256
)
signature = base64.b64encode(validation.digest())
data = {"response_token": "sha256=" + signature}
return jsonify(data)