Hi,
Thank you for your patience, and I’m sorry for the frustration this has caused.
We’ve included a short tutorial video to guide you through these steps: https://drive.google.com/file/d/12IfDtcDI79hD2ltrYjnuESYzCbz9FDt0/view?usp=sharing
We’re aware that Shopify’s new Developer Dashboard has made app creation and credential generation more confusing than before. Our development team is actively working on updating the plugin to fully support the new Shopify app flow, and this improvement is scheduled to be available next week.
In the meantime, here’s a quick workaround to get the required credentials:
– API Key → is now called Client ID (you can find this in Developer Dashboard > Apps > your app > Settings)
– Access Token → is no longer visible in the dashboard; you’ll need to generate it through an API request.
How to Generate Your Access Token – Open Terminal on your computer:
– Mac: Press Command + Space, type Terminal, and press Enter
– Windows: Press the Windows key, type cmd, and press Enter
Then paste this command (replace the placeholder values with your actual credentials):
curl -X POST https://YOUR-STORE.myshopify.com/admin/oauth/access_token -H Content-Type:application/x-www-form-urlencoded -d grant_type=client_credentials -d client_id=YOUR_CLIENT_ID -d client_secret=YOUR_CLIENT_SECRET
The response will include your access token. One thing to note: this token expires after 24 hours, so you’ll need to run the same command again when that happens.
Best regards.