Created a webhook form with only a text-field for filling in a url. Added the n8n webhook url and the POST method. I checked in n8n, it is set to POST as well. Anyone any idea what I might be missing here?
The idea behind a webhook form on a 404 page, was to prefill the url in there and ask the user to send a heads up. So that I could keep track which pages people go to that I might have accidently deleted.
Worker fetch is invoked with whatever method user provided. Though since we always passing json as body, GET just would not work. So only POST and PUT make sense.
In the future we need to support GET and DELETE methods by writing form data into url search params like browsers do.