Change POST request to GET request using workers for the same url.
is there a way to change the request method from post to get for the same request object, using workers?
2 Replies
I guess so... The documentation has this example showing how to cache POST requests: https://developers.cloudflare.com/workers/examples/cache-post-request
Part of it shows how to convert POST to GET
Cache POST requests · Cloudflare Workers docs
Documentation for Cloudflare Workers, a serverless execution environment that allows you to create entirely new applications or augment existing ones …
ok thanks Paulo