Skip to content

HMAC

The hmac functionality can be used to validate the following Shopify requests: - OAuth - Webhook - App Proxy

from spylib.hmac import validate

# use_base64 is set to False by default, set it to True for verifying webhook hmac
def validate_webhook_hmac(data: str, hmac_header: str, api_secret_key: str):
    validate(secret=api_secret_key, sent_hmac=hmac_header, message=data, use_base64=True)