Any tutorials or samples available for amazon s3 in mac os x?
Just needed a sample for the s3 simple upload download operation.
Searched a lot for api.but not available!!
Found custom one by Tom Anderson.But I cannot make it work.
Is there any workaround ?Looking for tutorials or source samples?
Asked
Active
Viewed 1,465 times
4
-
mac osX Programming!!! Objective C – Lithu T.V Jul 11 '12 at 16:46
-
Note:I found ios api there in AWS website.But nothing for the OS X devolopment – Lithu T.V Jul 11 '12 at 16:47
-
1I use the AWS S3 files for Mac OSX and it works great. Just copy the Amazon.S3 folder including subfolders and the include folder into your Xcode project and you should be able to import the necessary classes required to do upload/download. You may have to edit a few files from using UIKit to Appkit, but that should be the only problem. There is an example (S3uploader) for S3 upload in the samples folder in the latest release of the AWS. Cheers, Trond – Trond Kristiansen Jul 12 '12 at 14:50
-
@Trond:Can i hav some working samples?? – Lithu T.V Jul 12 '12 at 15:17
-
@TrondKristiansen : which files are you using for doing this??i(aws for mac??).can you please provide more info?? – Lithu T.V Jul 12 '12 at 15:19
-
Just download the files at AWS: http://aws.amazon.com/sdkforios/ , Copy the folders I mentioned earlier and take a look at the sample S3Uploader – Trond Kristiansen Jul 12 '12 at 15:40
-
@TrondKristiansen : K i download the files and copied the files and added to a mac application but gettin some include files missing (like ../AmazonSDKUtil.h)..What to do?? – Lithu T.V Jul 12 '12 at 15:47
-
@TrondKristiansen: what about the include files the whole folder or jus the s3 part?? – Lithu T.V Jul 12 '12 at 16:10
-
You just have to remove the ../ – IluTov Oct 05 '12 at 09:10
-
It really works (using the iOS SDK in a Mac project with minor modifications) - I've made a minimal github project if you need a working example: [https://github.com/viktorbenei/AmazonS3-ios-sdk-in-osx-project](https://github.com/viktorbenei/AmazonS3-ios-sdk-in-osx-project) – Viktor Benei Feb 17 '14 at 09:16
-
Plz visit : http://stackoverflow.com/questions/25369602/how-to-upload-a-uiimage-to-s3-with-aws-ios-sdk-v2 http://stackoverflow.com/questions/19478904/nsurlsession-and-amazon-s3-uploads – Swati Jan 12 '17 at 06:31
-
Plz visit : http://stackoverflow.com/questions/25369602/how-to-upload-a-uiimage-to-s3-with-aws-ios-sdk-v2 http://stackoverflow.com/questions/19478904/nsurlsession-and-amazon-s3-uploads – Swati Jan 12 '17 at 06:31
1 Answers
-1
From the command-line the aws-cli is the easiest way to upload to / download from S3.
See: http://docs.aws.amazon.com/cli/latest/reference/s3/index.html
For programmatic access, available SDKs are here: http://aws.amazon.com/tools/

John Rotenstein
- 241,921
- 22
- 380
- 470
-
There are no Cocoa SDKs listed in the link you have provided. As far as I can tell, the closest thing to a native AWS SDK on Mac is the C++ integration. – Alex Chase Jun 08 '19 at 14:34