![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (Lianja) S3 Upload a File with Public Read PermissionsDemonstrates 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. 
 // 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  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.