Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
I am using Azure functions to receive my webhooks. Many I receive just fine, but sometimes I get the error that the "request body is too large and exceeds the maximum permissible limit". I am wondering if anyone else implementing webhooks through Azure functions has had this issue? I haven't found a way to get around it from the Azure side. Is there anything I can do to reduce the size of the webhook payload I receive? The webhook is for orders/fulfilled. I don't want to have to abandon using the Azure functions if possible.
I figured this out. I don't think it's the size of the request that is the problem. It's the size of the Azure storage queue. Which is a whole other problem that has nothing to do with Shopify. I am going to switch to blob storage and I should be good.