71 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
403
views
Laravel 11 + Backblaze B2 (S3-Compatible): PUT error — "Unsupported header 'x-amz-checksum-crc32'" when uploading files
I'm using Laravel's filesystem with the S3 driver to connect to Backblaze B2's S3-compatible API. Here's my disk configuration in config/filesystems.php:
'disks' => [
'b2' => [
'...
0
votes
0
answers
103
views
bad_auth_token 401 response when calling https://api.backblazeb2.com/b2api/v2/b2_authorize_account endpoint from Node.js
I'm trying to implement Backblaze services but I'm stuck at the authorisation step calling the endpoint https://api.backblazeb2.com/b2api/v2/b2_authorize_account
In my account I enabled the B2 Cloud ...
3
votes
2
answers
265
views
Laravel Disk b2 (backblaze) not working in Laravel 11
This is my config/filesystems.php:
'b2' => [
'driver' => 's3',
'key' => '*************',
'secret' => '**************',
'region' => 'us-west-002',
...
1
vote
1
answer
588
views
CORS Issue with Backblaze B2 S3-Compatible API When Using ListBucketsCommand in Browser
I'm working of a S3 Navigator and trying to use Backblaze B2's S3-compatible API in my Angular application to authenticate and list buckets using the AWS SDK's S3Client. While this code works ...
2
votes
1
answer
394
views
Moving large amount of data from Backblaze B2 to AWS S3 buckets
We have 20 TB data in Backblaze B2 storage. We want to migrate this to AWS S3 securely. What are my options for doing this in a scalable, secure way?
Can I do this without hitting the disk? (Cloud to ...
1
vote
2
answers
447
views
How do I get Backblaze B2 to respond with Access-Control-Allow-Origin?
I'm trying to fetch an image using JavaScript from a Backblaze bucket that is set to allPrivate.
I have a correct authorization code that works if I fetch the image like this:
echo '<img src="'...
2
votes
1
answer
618
views
BackBlaze B2 Cloud Storage: b2_upload_file endpoint endlessly hangs
I have a NextJS application that is using Backblaze B2 Cloud Storage to store videos and photos that a user wishes to upload.
I seem to be having an odd issue when trying to upload files. Basically, I ...
2
votes
2
answers
504
views
How to limit bucket upload size in Backblaze B2 (S3 COMPATIBLE API)?
I'm implementing a functionality in our app where users buy a subscription and create their workspace. Each subscription plan has different storage limits (e.g, 5 GB for a small plan). We use ...
1
vote
1
answer
221
views
"Source not supported" Error using Backblaze and next-video in NextJS
However, my Video component is throwing an error when I visit the page. The URL works in a tag in Next.js, but it does not work the same way in the next-video package. I have configured my next....
1
vote
1
answer
52
views
BackBlaze images corrupt when posting buffer from NodeJS
I am trying to capture an image on a React Native app and post the image to my NodeJS server. I then am trying to post that image to BackBlaze after converting it to a Buffer. All the images are ...
1
vote
1
answer
151
views
Can't set catalog to backblaze in Trino
I'm trying to run a POC on getting trino querying data into backblaze.
Following this example: https://github.com/bitsondatadev/trino-getting-started/blob/main/hive/trino-b2/README.md got me to the ...
2
votes
1
answer
722
views
Backblaze cors not working with localhost
I was following this github repo and this answer.
rules.json
[
{
"corsRuleName": "downloadFromAnyOriginWithUpload",
"allowedOrigins": [
&...
1
vote
1
answer
325
views
Backblaze-b2 cors issue nextjs
Hi all I'm trying to set up Backblaze for a nextjs app, but I'm getting cors error, in the first instance I thought that it was the bucket and I set the custom cors rules but it was not because I'm ...
2
votes
1
answer
145
views
Can't upload custom header for large file to Backblaze
I'm using rclone to upload a large file (~60Gb) to B2 storage. I also wanted to upload a custom header but it didn't work. It's worked fine if my file is small.
rclone --config rclone.conf --bwlimit ...
1
vote
1
answer
459
views
Download a snapshot from Backblaze with curl
I'd like to download a lot of small files compressed into a snapshot from Backblaze B2 to a remote server with curl or wget.
The download URL is only accessible if you are signed in, and accessing the ...
DaWe's user avatar
- 1,723