|
|
|
|
|
by nhoughto
1727 days ago
|
|
I've always found pre-signed URLs fragile and a pain to work with, when we solved this problem we just put cloudflare workers in front of b2, so the worker can sign requests to b2 itself, so the interface to the user can be simpler. Could just be a straight POST with bytes, then the worker will turn that into a PutObject call to the s3 api, it works pretty damn well. If you are reading files back out again too you can use cloudflare caching to speed things up, its a good combo. |
|