Using the latest App Bridge script loaded from Shopify's CDN

Topic summary

Developers are encountering an automated requirement failure when submitting Shopify apps: the system isn’t recognizing that they’re using the latest App Bridge script from Shopify’s CDN.

Current implementations attempted:

  • Loading App Bridge from unpkg.com (@shopify/app-bridge@3) in React’s index.html
  • Using createApp() with API key and host parameters
  • Loading from Shopify’s official CDN (cdn.shopify.com/shopifycloud/app-bridge.js)
  • Including meta tags with shopify-api-key

Key issue:
Even after implementing the script and waiting 2+ hours, the automated check continues to fail.

Status:
The discussion remains unresolved with multiple developers experiencing the same problem. No working solution or official guidance has been provided yet. Participants are seeking confirmation on the correct implementation method to satisfy Shopify’s automated requirement.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

I am trying to submit a shopify app but it is not ticking off the automated requirement of: Using the latest App Bridge script loaded from Shopify’s CDN

2 Likes

How to fix this?

2 Likes

i’m using react.js. here i’ve added this script in index.html page inside head tag. -

and in app.js page

useEffect(() => {
const urlParams = new URLSearchParams(window.location.search);
const shop = urlParams.get(“shop”);

if (shop) {
const app = createApp({
apiKey: process.env.SHOPIFY_API_KEY,
host: new URLSearchParams(window.location.search).get(“host”),
forceRedirect: true,
});

// Redirect to your Django install endpoint
window.location.href = ${domain}/account/shopify/install?shop=${shop};

}
}, );

after updating this i’m waiting more than 2 hours. but still same issue happen. how to resolve this?

Same, Any update?

i used this still now i got this have you finished this ?

are you able to fix this issue?