Focuses on API authentication, access scopes, and permission management.
Hi;
I am developing my first shopify app and i struggling with this error.
I have no error on chrome's normal mode. In incognito mode it redirects to "https://my_shop_name.myshopify.com/admin/auth/login"
Theese are the steps;
first request come to my app:
"https://app.mysite.com/auth/shopify.php?embedded=1&hmac=a7ea1f57663a9..."
i redirect to "https://my_shop_name.myshopify.com/admin/oauth/authorize?client_id=fd27a74fc***&scope=read_orders..."
For some reason shopify did not redirect back to my app. instead redirects to "https://my_shop_name.myshopify.com/admin/auth/login"
i am using this PHP library: https://github.com/gnikyt/Basic-Shopify-API
Can you help me?
Hey
Embedded app use JWT authentication, which is stored in cookies in browser. and you are trying to use it in incognito mode, which doesn't save cookies.
To use embedded app in incognito mode, you would have to allow to save third party cookies.
Thank you for your response.
I can allow cookies in my browser but Shopify App Review Team forces me to resolve this issue. How can i do that without allowing third party cookies?
Did you manage to resolve it? Same issue here
yes i solved it but i cant remember how. If you use php i can send you that part of code. Thats only i can do for you. Sorry
this is function that do the magic.