A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
In May I've seen 3 occurrences of invalid hex characters in a very small number of requests. For example, I'm seeing requests to my OAuth callback endpoint with a query parameter that looks like:
hmac=7205A26CO3h5cR973593353631776t2Tc737W3320p784s917473qrd63X88555
I was under the impression from the documentation that:
> The message is authentic if the generated hexdigest is equal to the value of the hmac parameter
Is this a malicious actor/test that I'm validating the requests correctly, or have I misunderstood the implementation required for HMAC validation (that it is always a hex string)?
Requests to the OAuth callback endpoints should always be hex encoded, but it's worth mentioning that hmac values for webhooks are base64 encoded (which this value looks to be).
You may want to check to make sure that a few webhooks aren't sneaking into this route, but your assumption that OAuth hmac callbacks are hex values is correct.
Shayne | Developer Advocate @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog