Sample code for 30+ languages & platforms
Lianja

Wasabi Upload File

See more Wasabi Examples

Demonstrates how to upload a file to a Wasabi bucket.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

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

loHttp = createobject("CkHttp")

// Insert your access key here:
loHttp.AwsAccessKey = "access-key"

// Insert your secret key here:
loHttp.AwsSecretKey = "secret-key"

loHttp.AwsEndpoint = "s3.wasabisys.com"

lcBucketName = "chilkattest"
lcObjectName = "seahorse.jpg"
lcLocalFilePath = "qa_data/jpg/seahorse.jpg"
lcContentType = "image/jpg"

loHttp.KeepResponseBody = .T.

llSuccess = loHttp.S3_UploadFile(lcLocalFilePath,lcContentType,lcBucketName,lcObjectName)

if (llSuccess <> .T.) then
    ? loHttp.LastErrorText

    loXml = createobject("CkXml")
    loXml.LoadXml(loHttp.LastResponseBody)
    ? loXml.GetXml()
else
    ? "File uploaded."
endif



release loHttp
release loXml