I have setup a webhook for when an order has been created. In the payload I can see that a price is available for each product line item: "line_items": [ {"id": 9983141806183,...
No content to show
User Activity
06-01-2021
Alright, I figured it out. The webcatcher had an option to "format json" and "word wrap" which was obviously adding some formatting characters.Therefore be sure to check that you are testing with the response body in its absolute raw format.I hope th...
06-01-2021
I am unable to successfully verify any webhooks. I am doing the following: publicfunctionverifyWebhook($request, $secret) { $signature = $_SERVER['HTTP_X_SHOPIFY_HMAC_SHA256']; $calculated_hmac = base64_encode(hash_hmac('sha256', $request->in...