AWS Library: Some Basic Questions [RESOLVED]
Posted: Wed Jan 29, 2020 4:28 am
I am trying to learn the basics of using AWS S3 for data storage and retrieval through LiveCode scripting.
The dictionary provides the command
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
how would I include the authorization header? How would I combine these two sets of information? Could you provide an example?
Thanks,
Sri
The dictionary provides the command
Code: Select all
AWSSetCredentials kAccessID, kSecret, "us-east-1"
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
Thanks,
Sri