Questions and discussions about using the Shopify CLI and Shopify-built libraries.
We’re replacing the EASDK with App Bridge for enhanced support for session tokens. Because we want merchants to have the best app loading experience, apps still using the EASDK will no longer have prioritized listings in our app store.
If you would like to confirm you have successfully migrated to App Bridge, you can use the below code in your browser dev console to see which EASDK calls your app may still be making.
window.addEventListener('message', (messageEvent) => {
try {
const data = JSON.parse(messageEvent.data);
if (data.message && data.message.startsWith('Shopify.API')){
console.log("EASDK EVENT", data);
}
} catch (error) {
// No-op
}
}
)
If you have questions about migrating, drop a comment below!
To learn more visit the Shopify Help Center or the Community Blog.
We're building a custom app and noticed there was no response from shopify when it made auth calls. I suspect there's an issue with the API key of the app. Please can you help check?
Hello!
If you're having an issue with Oauth, please reference our documentation or reach out to partner support via your partner dashboard. Thanks!
To learn more visit the Shopify Help Center or the Community Blog.
Do you know this below question?
The HMAC digest by java differs from your generated as Verifying the webhook to authorize our app using OAuth, please check our annexes,