Checking your app for EASDK calls

Checking your app for EASDK calls

emmabryson
Shopify Staff (Retired)
3 0 1

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.

Replies 3 (3)

EcomtargetLLC
Shopify Partner
2 0 1

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?

emmabryson
Shopify Staff (Retired)
3 0 1

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.

chendongyang
Shopify Partner
14 0 1

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,