All Questions
6 questions
-1
votes
1
answer
80
views
Why are the validations of signatures different?
I need to validate a signature. The code examples for signature validation are only in Python. Here is the Python function:
import hmac
import hashlib
import json
def verify_signature(key, timestamp, ...
0
votes
1
answer
246
views
Webhook verification fails with Shopify triggering an Azure function
I'm trying to create a webhook consumer:
Shopify is posting the data
an Azure function written in Python is triggered by HTTP
the sample code below just logged the result of the webhook ...
0
votes
0
answers
122
views
Signature validation always returns False
I am trying to validate the post request coming from Typeform. Their docs on how to do it are here, BUT it does not work. So I have implemented the following :
def verifySignature(request):
...
0
votes
1
answer
1k
views
Shopify Webhook HMAC Validation With Flask
I'm trying to verify that the Webhook received is coming from Shopify. They have this doc, but it doesn't work (getting type errors).
Here's what I have so far. It produces no errors, but the ...
0
votes
0
answers
893
views
MS Teams outgoing webhook with python bot (bot framework) authentication with HMAC
I'm trying to register a MS Teams outgoing webhook to handle user requests. The bot has been built using Microsoft Bot Framework. The bot is working properly when tested with the Bot Framework ...
4
votes
3
answers
9k
views
Generate HMAC Sha256 in python 3
I write code to verify an HMAC Auth incoming POST request with JSON to our API. The HMAC I received is OD5ZxL4tdGgWr78e9vO3cYrjuOFT8WOrTbTIuuIH1PQ=
When I try to generate it by my self using Python, ...