R – iPhone API for Accessing Amazon S3 REST API

amazon s3cocoa-touchiphonerest

Does anyone have any suggestions for GETing from or POSTing to Amazon S3 services using their REST API via the iPhone. It does not look like it is possible but I may be reading the docs wrong.

Thank you in advance for your help!

L.

Best Answer

In a general case I'd recommend to use ASIHttpRequest, it has a lot of built-in functionality (REST compatible too) and a lot of things, making life easier than with NSURLConnection.

It also has S3 support out of box.

Related Topic