Hi @anshuman099
Those errors mean Shopify’s automated checker is actively testing your webhook endpoints and they are failing. Your .toml file is likely correct, but your app’s backend is not responding correctly.
Provides mandatory compliance webhooks" Error: This means your app’s server isn’t reachable. Shopify’s tool tried to send a test webhook to the URL in your .toml file but got an error (like a 404 or 500). Your endpoint must be live and publicly accessible.
Verifies webhooks with HMAC signatures" Error: This means Shopify did reach your server, but your code failed to properly validate the X-Shopify-Hmac-SHA256 header. Your app must verify the HMAC signature for every webhook it receives and return a 200 OK response to pass this check.
Hope this helps!
