Shopify App having issues when loaded on Safari

Shopify App having issues when loaded on Safari

sandeepks23
Shopify Partner
41 0 6

We have a shopify app which is build using Django which is working fine on Chrome or windows. But when used in Safari its not working. We are getting Internal Server errors. I am attaching the screenshot below.

Replies 2 (2)

T_Andersn14
Shopify Partner
7 0 1

Were you able to find a solution to this?

sandeepks23
Shopify Partner
41 0 6

It was because safari blocks all the cookies in iframe. That's why we were getting this issue. As django uses csrf middleware it will cause error as csrf cookie will be rejected by safari. We removed the csrfmiddleware and came up with our own middlewares for authentication.