My worker makes KV requests 5 times, request to itunes.apple.comitunes.apple.com and parse about 10KB JSON 4 times, it only takes about 5~7ms CPU time.
I was previously trying with a worker and a netlify rewrite pointing at it, but thought I'd try using cloudflare pages with a custom domain instead to see if that helped
a simple _worker.js in a pages project, set up with a custom domain foo.example.com. it successfully receives requests, including a different webhook from the same source. the other webhook (a body full of XML) never gets to my worker
I'm literally stumped then. I don't see how the sender of a http request would fail to send that request only if the domain they are sending to ends up going to a cloudflare worker
the fact that it also doesn't work when transparently tunnelled through a netlify site makes me think that cf must not be allowing the request through based on what it looks like, rather than it being a problem with the sender