I encountered an Unauthorized error after writing the code while following the documentation linked below:
Could you tell me what is wrong with the following code?
<script async src="https://cdn.sesami.co/sdk.js"></script>
<script>
window.sesamiAsyncInit = () => {
sesami = new SesamiSDK({
variantId: "{{product.selected_or_first_available_variant.id}}",
shopId: "{{shop.id}}",
productId:"{{product.id}}",
quantity: 1,
autoLoad: true
})
sesami.init();
}
</script>
Additionally, Liquid was correctly outputting the values.
Do I need something like an API key to use the SDK?