Hi there, I have created a typeform with webhook integeration. I have embedded the form in my website. I am getting an error with error code 302 as a webhook response.
Can anyone please explain what’s the meaning of that error and what is the solution to fix that?
Thanks!
Here you can see the Response Header
Best answer by mathio-tf
It looks like your URL might require you to login to access it since has wp-admin in it.
When I try making a POST request to your URL via Postman I get 302 response too with Location: https://warmup.mycrush.fit header which redirects me to your landing page.
I think you need to expose your webhook endpoint and make sure it is accessible from the outside world (eg. by Typeform). If you need to secure the endpoint you can setup a secret - see the help article on Webhooks.
the 302 HTTP status code is coming from your webhook, not from typeform.
Based on the response my guess is you did not use HTTPS in the URL and your Wordpress page is set up to always redirect to HTTPS URL. Updating your webhook URL to use HTTPS might help.
It looks like your URL might require you to login to access it since has wp-admin in it.
When I try making a POST request to your URL via Postman I get 302 response too with Location: https://warmup.mycrush.fit header which redirects me to your landing page.
I think you need to expose your webhook endpoint and make sure it is accessible from the outside world (eg. by Typeform). If you need to secure the endpoint you can setup a secret - see the help article on Webhooks.