Back to Top

Third Party Application Error for Shopify

Updated 8 March 2019

When you are dealing with a proxy page of Shopify, the Third Party Application Error is common: “There was an error with a third party application.”, this may be possible when your application is having an error somewhere in the code, review if it has.

But what if your code is fine, the most possible cause of this error is that size of content you want to display on this page exceeds the limit. In this case, you can fix this by:

Description

Third Party Application Error for Shopify

Shopify proxy page error  “There was an error in the third party application.”

 

1)  Setting the ‘content-length/size’ in the header and don’t forget to set the content type as ‘application/liquid’.

<?php
        header('Content-Type: application/liquid');
        header("Content-Length: 2400");
        //your data to display

OR

Searching for a Shopify
Headless solution ?
Find out More

2) The simple hack is to do this work that shows only necessary data on your proxy page and load remaining data via ajax.

third party application error shopify

cheer… 🙂

. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Back to Top

Message Sent!

If you have more details or questions, you can reply to the received confirmation email.

Back to Home

Third Party Application Error for Shopify