I’ve found this post with an S3 implementation:
http://web-b1.anscamobile.com/code/amazon-s3-rest-api-implementation-corona
However it’s a few years old, so before I started setting it up I wanted to know if anyone has used it recently, and is the code there still up to date?
There is also a comment towards the bottom of that page that interests me:
For those worried about the AWS secret key:
You should NEVER ship an app with your secret key. I would not even consider leaving this key on a server.
Anyone with access to your secret key can take over your account, and you will pick up the bill.One solution is to create a bogus account and use that, as suggested. But Amazon actually supports public GET, so you can easily do content downloading without authentication.
Does anyone know how we would set that up? We have some json files that users pull down from our server at the moment. They do not contain any secure info, they just adjust various settings within the app. We also don’t need to be able to upload anything from the app (at the moment).
So public GET would be great, as it means we wouldn’t need to put our access keys anywhere at all.
Does anyone have any experience of working with S3 in Corona?
Thanks