create a webhook which is working perfectly but i want to change callback url, when i hit update api it shows 404 ?" Please help me
Can you post the full request you’re making (without the token)?
What API key are you using?
Does making a GET request to 1/webhooks/{idWebhook}
return a 404?
When i hit this callback url from post it works fine but when i create using webhook it returns above error message? Please help
And also accepting online test callback url’s.
This is because the callbackurl is not authenticated. When trello calls the callbackurl it doesn’t found the oauth process for getting in to system. You can make callbackurl public and then test. It should work.
What @GauravSrivastava said.
Also, make sure the URL responds to a HEAD
request in addition to a POST
. From the docs:
The provided callbackURL must be a valid URL during the creation of the webhook. We run a quick HTTP HEAD request on the URL, and if a 200 status code is not returned in the response, then the webhook will not be created. Additionally, if your callbackURL contains an invalid SSL certificate the webhook will not be created (no SSL certificate will not cause the creation to fail).
https://developer.atlassian.com/cloud/trello/guides/rest-api/webhooks/
Thank you so much, now it works fine change post route to any. Thank you