Lianja
Lianja
S3 Upload a File with Public Read Permissions
See more Amazon S3 Examples
Demonstrates how to upload a file to the Amazon S3 service with the x-amz-acl request header set to "public-read" to allow the file to be publicly downloadable.Chilkat Lianja Downloads
llSuccess = .F.
// This example assumes the Chilkat HTTP 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"
lcContentType = "image/jpg"
// Add the x-amz-acl request header to make the file publicly readable.
loHttp.SetRequestHeader("x-amz-acl","public-read")
llSuccess = loHttp.S3_UploadFile(lcLocalFilePath,lcContentType,lcBucketName,lcObjectName)
if (llSuccess <> .T.) then
? loHttp.LastErrorText
release loHttp
return
endif
if (loHttp.LastStatus = 200) then
? "File uploaded."
else
? "Response status code: " + str(loHttp.LastStatus)
? loHttp.LastResponseBody
endif
release loHttp