(Lianja) S3 Upload File
Demonstrates how to upload a file to the Amazon S3 service.
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 AWS keys here:
loHttp.AwsAccessKey = "AWS_ACCESS_KEY"
loHttp.AwsSecretKey = "AWS_SECRET_KEY"
lcBucketName = "chilkat.ocean"
lcObjectName = "seahorse.jpg"
lcLocalFilePath = "qa_data/jpg/seahorse.jpg"
// The Content-Type has the form type/subtype, such as application/pdf, application/json, image/jpeg, etc.
// See Explaining Content-Types
lcContentType = "image/jpeg"
llSuccess = loHttp.S3_UploadFile(lcLocalFilePath,lcContentType,lcBucketName,lcObjectName)
if (llSuccess <> .T.) then
? loHttp.LastErrorText
else
? "File uploaded."
endif
release loHttp
|