No content to show
User Activity
12-09-2022
I have confirmed that the expected behavior occurs with a subdomain (e.g. can.glas.vin) so the issue is only when using a subfolder e.g. glas.vin/en-ca
12-09-2022
I am also having this issue. The problem is related to Shopify Markets. Which explains why this issue began in September. More specifically it is related to using the "subfolder". I have not tested the subdomain option. I have recorded a loom video t...
import hmac
import hashlib
import base64
from flask import Flask
app = Flask(__name__)
SECRET = ''
def verify_webhook(data, hmac_header):
digest = hmac.new(SECRET.encode('utf-8'), data, hashlib.sha256).digest()
computed_hmac = base64.b64...