Copy to Azure blob-level SAS URL

What is the problem you are having with rclone?

I need to copy files from Wasabi to Azure Blob Storage using blob-level SAS URLs (e.g. https://[REDACTED].blob.core.windows.net/us1-uploads/[REDACTED]/136f06ed386f49908d849dd11e838d43/test-image.jpg?sv=2024-11-04&st=2025-04-23T21%3A32%3A10Z&se=2025-04-24T21%3A47%3A10Z&sr=b&sp=rwl&sig=Ml%2F8Q1BmxZ35%2FhNCPolMHBd70aB%2Bk7hXnsBO%2BnZz4uY%3D)

I was hoping to use AzCopy, but it doesn't support Wasabi/other S3-like platforms, only regular AWS S3. Hoping rclone can fill the void. Is there any way to POST to url?

I am not able to get an account or container-level SAS.

Run the command 'rclone version' and share the full output of the command.

- os/version: darwin 13.5.1 (64 bit)
- os/kernel: 22.6.0 (arm64)
- os/type: darwin
- os/arch: arm64 (ARMv8 compatible)
- go/version: go1.24.0
- go/linking: dynamic
- go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

Wasabi, Azure

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone copy "MyWasabi:path/to/image.jpg" "https://[BLOB NAME].blob.core.windows.net/us1-uploads/[REDACTED]/136f06ed386f49908d849dd11e838d43/test-image.jpg?sv=2024-11-04&st=2025-04-23T21%3A32%3A10Z&se=2025-04-24T21%3A47%3A10Z&sr=b&sp=rwl&sig=Ml%2F8Q1BmxZ35%2FhNCPolMHBd70aB%2Bk7hXnsBO%2BnZz4uY%3D"

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

[MyWasabi]
type = s3
provider = Wasabi
access_key_id = XXX
secret_access_key = XXX
endpoint = s3.us-west-1.wasabisys.com

A log from the command that you were trying to run with the -vv flag

2025/04/23 17:25:52 CRITICAL: Failed to create file system for destination "https://[REDACTED].blob.core.windows.net/us1-uploads/[REDACTED]/136f06ed386f49908d849dd11e838d43/": didn't find section in config file ("https")

welcome to the forum,

afiak, no way to post to url, as http remote is read-only


workaround:

  1. rclone mount MyWasabi: ~/mount
  2. azcopy ~/mount/path/to/image.jpg ...

Thank you so much!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.