Sample code for 30+ languages & platforms
AutoIt

Wasabi Upload File

See more Wasabi Examples

Demonstrates how to upload a file to a Wasabi bucket.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat.Http")

; Insert your access key here:
$oHttp.AwsAccessKey = "access-key"

; Insert your secret key here:
$oHttp.AwsSecretKey = "secret-key"

$oHttp.AwsEndpoint = "s3.wasabisys.com"

Local $sBucketName = "chilkattest"
Local $sObjectName = "seahorse.jpg"
Local $sLocalFilePath = "qa_data/jpg/seahorse.jpg"
Local $sContentType = "image/jpg"

$oHttp.KeepResponseBody = True

$bSuccess = $oHttp.S3_UploadFile($sLocalFilePath,$sContentType,$sBucketName,$sObjectName)

If ($bSuccess <> True) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)

    $oXml = ObjCreate("Chilkat.Xml")
    $oXml.LoadXml($oHttp.LastResponseBody)
    ConsoleWrite($oXml.GetXml() & @CRLF)
Else
    ConsoleWrite("File uploaded." & @CRLF)
EndIf