We are trying to authenticate a session against Shopify on a incoming webhook request in our webhooks.jxs
const result = await authenticate.webhook(request);
({ shop, topic, session, admin, payload } = result);
after this call session and admin are both undefined.
We have registered the webhook in our toml file - but also tried to do it in the shopify.server.js file.
We created the project a branch with the webhook solution on the app 2 month ago, at this point the solution was working, now it impossible to get to work.
We tried the solution listed in:
https://github.com/Shopify/shopify-app-template-remix/issues/796 and
https://github.com/Shopify/shopify-app-template-remix/issues/462
with no lock.
We have look in the dev.sqlite database, the session table is empty.
Any one that have any suggestion on what to do?