(AutoIt) Backblaze S3 Upload Binary
Demonstrates how to upload the in-memory binary data to an Backblaze bucket.
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")
; keyID = Access Key ID or Access Key
$oHttp.AwsAccessKey = "access-key"
; applicationKey = Secret Access Key or Secret Key
$oHttp.AwsSecretKey = "secret-key"
; Region is the 2nd part of your S3 Endpoint
$oHttp.AwsEndpoint = "s3.us-west-002.backblazeb2.com"
Local $sBucketName = "chilkat-test-123"
Local $sObjectName = "starfish.jpg"
; The Content-Type has the form type/subtype, such as application/pdf, application/json, image/jpeg, etc.
; See Explaining Content-Types
Local $sContentType = "image/jpeg"
$oHttp.KeepResponseBody = True
$oJpgData = ObjCreate("Chilkat.BinData")
$bSuccess = $oJpgData.LoadFile("qa_data/jpg/starfish.jpg")
$bSuccess = $oHttp.S3_UploadBd($oJpgData,$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("JPG uploaded." & @CRLF)
EndIf
|