Not authenticating with session tokens

Hi guys, i’m trying to submit my app for review but i got stuck at “Not authenticating with session tokens” step.
The app was made with starter template remix.js from shopify, which has all of those things already installed. Has been 4 days no response from shopify, they said to get help from community because they can’t do anything about this which is kinda nasty to be honest is a simple app. I got 2 more apps builded in 2024 and was flawless when come to submit the app for review but this new thing has been an issue for most of us.

How do you manage this issue?

Hello there @Ionuts1 I suggest you look at this reply given when another community member had a similar issue here https://community.shopify.com/topic/2910744

Hopefully you can find some useful pointers in there. Also you mentioned that the 2 others app you submitted didn’t have this issue, so are there any differences between those two and this one in particular that you can try to identify?

Shopify’s new session token requirement has been tripping up a lot of devs. Since you’re using the Remix.js starter, double-check that you’re properly handling OAuth and session tokens in app/routes/auth.jsx or wherever your auth logic is. Also, make sure your app is using App Bridge correctly, Shopify wants everything to be stateless now.

Try logging session tokens in the browser dev tools (window.Shopify.sessionToken.get()) to see if they’re actually being retrieved. If it’s still acting up, sometimes just reinstalling the app and clearing cookies fixes weird auth issues. If all else fails, hit up Shopify Dev forums or Discord—way faster than waiting on support ?‍

Maybe since you’re using the Remix starter template, double-check that your app is actually verifying session tokens on every request. Sometimes, even though the setup is there, the implementation isn’t fully connected

Try using Shopify App Bridge to make sure session tokens are being sent properly, and confirm that your backend is validating them correctly. Also, check if your app is running on the latest @Shopify_77 /remix-app version—some updates fix session handling issues. If all else fails, test it using Shopify’s OAuth playground to see if your tokens are working as expected