(Visual FoxPro) S3 Upload File
Demonstrates how to upload a file to the Amazon S3 service.
LOCAL lnSuccess
LOCAL loHttp
LOCAL lcBucketName
LOCAL lcObjectName
LOCAL lcLocalFilePath
LOCAL lcContentType
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* 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"
lnSuccess = loHttp.S3_UploadFile(lcLocalFilePath,lcContentType,lcBucketName,lcObjectName)
IF (lnSuccess <> 1) THEN
? loHttp.LastErrorText
ELSE
? "File uploaded."
ENDIF
RELEASE loHttp
|