I have a remix embedded app that provides UI to the user however I also want to allow POST requests from a external source onto one of the embedded app routes.
I got a access token from running on a page in my embedded app:
const { session } = await authenticate.admin(request);
const accessToken = session.accessToken;
To my understanding this value is an offline access token for that specific store and my app.
I then took that value of “shpat_xxxxxxxxxxxxxxx” and passed it as the value of the “x-shopify-access-token” header on the external POST request.
However, when that external post request comes through and it reaches:
const { admin } = await authenticate.admin(request);
It is failing to authenticate and attempting to redirect to /auth/login.
What am I missing? Is this not the way to authenticate a external request?