Hi there
I have completed my compliance webhook with some basic requirements, such as returning 200 when valid and 401 when invalid. In addition, I have tested with a webhook trigger, and it returns success: “Success! Webhook has been enqueued for delivery.” But when I run “shopify app deploy,” the webhooks are still not registered in the newest release, and it returns “no changes in configuration.” I don’t know what I am missing. Can anyone help me? Here is my shopify.app.config.
`name = “Emerge App”
client_id = “MY_CLIENT_ID”
application_url = “https://emergeapp.net”
embedded = false
[auth]
redirect_urls = [
“https://spf.emergeapp.net/Oauth2LandingPage/index.html”,
“https://spf.ap.emergeapp.net/Oauth2LandingPage/index.html”,
“https://spf.emergeapp.com.cn/Oauth2LandingPage/index.html” ]`
[access_scopes]
scopes = "read_assigned_fulfillment_orders,write_assigned_fulfillment_orders,read_customers,write_customers,write_inventory,read_inventory,write_inventory_shipments,read_inventory_shipments,write_inventory_shipments_received_items,read_inventory_shipments_received_items,write_inventory_transfers,read_inventory_transfers,write_locations,read_locations,read_merchant_managed_fulfillment_orders,write_merchant_managed_fulfillment_orders,write_order_edits,read_order_edits,read_orders,write_orders,read_product_listings,write_product_listings,read_products,write_products,read_third_party_fulfillment_orders,write_third_party_fulfillment_orders"
[webhooks]
api_version = "2026-01"
[[webhooks.subscriptions]]
compliance_topics = ["customers/redact", "customers/data_request", "shop/redact"]
uri = "https://MY_HOST_AND_PORT/api/v1/shopifyWebhooks"

