My first time setting up a new store since the REST API was discontinued. When I call GraphQL using my existing access token it works, but when I use the new one generated it doesn’t. Am I doing something wrong with this process:
- Log into Shopify admin
- Settings
- Apps
- “Build Apps in Dev Dashboard”
- Opens https://dev.shopify.com/dashboard/[numbers]/apps
- Click “Create App”
- Give app name, click “Create”
- Give scopes
- Click “Release”
- Click “Release” on “give version name” popup
- On dev app page, click “Settings”
- Under “Credentials”, “Secret” I copy the secret
- Use that value in X-Shopify-Access-Token
- Post to https://[storename].myshopify.com/admin/api/2026-04/graphql.json (using exact same Postman window, just replacing X-Shopify-Access-Token value
But instead of a success, I get 401 with response:
{
"errors": "\[API\] Invalid API key or access token (unrecognized login or wrong password)"
}