Go
Go
Wasabi Upload File
See more Wasabi Examples
Demonstrates how to upload a file to a Wasabi bucket.Chilkat Go Downloads
success := false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := chilkat.NewHttp()
// Insert your access key here:
http.SetAwsAccessKey("access-key")
// Insert your secret key here:
http.SetAwsSecretKey("secret-key")
http.SetAwsEndpoint("s3.wasabisys.com")
bucketName := "chilkattest"
objectName := "seahorse.jpg"
localFilePath := "qa_data/jpg/seahorse.jpg"
contentType := "image/jpg"
http.SetKeepResponseBody(true)
success = http.S3_UploadFile(localFilePath,contentType,bucketName,objectName)
if success != true {
fmt.Println(http.LastErrorText())
xml := chilkat.NewXml()
xml.LoadXml(http.LastResponseBody())
fmt.Println(*xml.GetXml())
} else {
fmt.Println("File uploaded.")
}
http.DisposeHttp()
xml.DisposeXml()