Hello,
I am trying to integrate the Storefront and Admin API into my non-embedded app. I am using the authorization grant flow to obtain my session for my graphql queries.
Upon installing my custom app via the flow, I am presented with the following below, where the install button is disabled with no logs/messages to help(I replaced the apps and org name).
My server is currently being tunneled through Cloudflare for oauth and valid ssl purposes.
I am able to install my app via an installation link from the partners dashboard, but this process breaks my application as my /auth and /auth/callback endpoints are not called by Shopify. Attached below is my app config.
# Learn more about configuring your app at https://shopify.dev/docs/apps/tools/cli/configuration
client_id = ""
name = "My-App"
application_url = "https://my-app.trycloudflare.com"
embedded = false
[build]
automatically_update_urls_on_dev = true
dev_store_url = "my-store.myshopify.com"
[webhooks]
api_version = "2026-01"
[access_scopes]
# Learn more at https://shopify.dev/docs/apps/tools/cli/configuration#access_scopes
scopes = "read_orders,read_products,read_product_listings,read_metaobjects,read_inventory,write_metaobjects"
[auth]
redirect_urls = [
"https://my-app.trycloudflare.com/auth",
"https://my-app.trycloudflare.com/auth/callback",
"https://my-app.trycloudflare.com/auth/shopify/callback",
"https://my-app.trycloudflare.com/session-token-bounce",
]
[pos]
embedded = false
APIVersion: 2025-10
I appreciate any assistance into this matter.



