Api key

I think there’s a recent update on Shopify API for custom App. How can I stick to old version in order to be able to generate API key that begin with **“**shppa” for example API password: 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.

Recently, the API key the system is generating starts with “shpss” e.g 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 which is not working for my integration.

Please any solution to this problem.

Thanks

Following this thread as we do have the same issue. We were using a private app in the past and it was generating a shpaa API key which worked.

We tried using shpss and the master API key starting with shpat. No result. We keep on getting “invalid API / Username credentials” error

Looks like they deprecated basic HTTP authentication in January 2022

https://shopify.dev/apps/auth/basic-http

We solved this issue like this:

You simply need to edit the header and use the master API Access token shpat(which is revealed once) and then add -H 'X-Shopify-Access-Token to the header.

https://{shop}.myshopify.com/admin/api/2022-01/products.json
-H ‘Content-Type: application/json’
-H ‘X-Shopify-Access-Token: {Master_API_access_token}’

Ref: https://shopify.dev/apps/auth/admin-app-access-tokens