(PowerShell) Wasabi Upload File
Demonstrates how to upload a file to a Wasabi bucket.
Add-Type -Path "C:\chilkat\ChilkatDotNet47-9.5.0-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
# Insert your access key here:
$http.AwsAccessKey = "access-key"
# Insert your secret key here:
$http.AwsSecretKey = "secret-key"
# Note: The AwsSignatureVersion must equal 2 when using Chilkat v9.5.0.88 or earlier with Wasabi.
# Starting in Chilkat v9.5.0.89, AwsSignatureVersion 4 can be used.
$http.AwsEndpoint = "s3.wasabisys.com"
$http.AwsSignatureVersion = 2
$bucketName = "chilkattest"
$objectName = "seahorse.jpg"
$localFilePath = "qa_data/jpg/seahorse.jpg"
$contentType = "image/jpg"
$http.KeepResponseBody = $true
$success = $http.S3_UploadFile($localFilePath,$contentType,$bucketName,$objectName)
if ($success -ne $true) {
$($http.LastErrorText)
$xml = New-Object Chilkat.Xml
$xml.LoadXml($http.LastResponseBody)
$($xml.GetXml())
}
else {
$("File uploaded.")
}
|