I am trying to learn the basics of using AWS S3 for data storage and retrieval through LiveCode scripting.
The dictionary provides the command
Code: Select all
AWSSetCredentials kAccessID, kSecret, "us-east-1"
and notes that all requests must include an authorization header that contains a scoped signature …., etc.
So, how do I provide this information with each request? (I have the accessID, secret, etc).
Suppose I want a list of objects in a bucket by using the command
Code: Select all
AWSS3GetBucket pBucket,pParameters,pCallback
how would I include the authorization header? How would I combine these two sets of information? Could you provide an example?
Thanks,
Sri