Checking your app for EASDK calls

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!

1 Like

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?

1 Like

Hello!
If you’re having an issue with Oauth, please reference our documentation or reach out to partner support via your partner dashboard. Thanks!

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,