DEV Community

Discussion on: Django Shopify Webhook HMAC Verify

Collapse
 
koblintz profile image
koblintz

Hi - vv helpful, but couple of minor typos in your code

should be a 'def' in front of 'computed_hmac'

in the 'verify_hmac' def, the second line should be
return computed_hmac(secret, body) == shopify_hmac

(you have 'get_hmac')

Collapse
 
tipu profile image
Borhan Tipu

Thanks. I will update it.