Hey, I’m using Workers to replicate data between two Backblaze datacenters.
The worker accepts the sourceURL
and the destinationURL
, both of which are presigned URLs to the S3 buckets where we can GET
objects from and PUT
objects to.
Things work fine when I use the web console. But on using an external client (Postman/cURL), I constantly receive the following response:
<html>
<head><title>413 Request Entity Too Large</title></head>
<body>
<center><h1>413 Request Entity Too Large</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Could someone tell me what could be going wrong here? How is using Postman/cURL any different from using the web console?
Thank you for your time!