Latest | 3.2.1 |
---|---|
Homepage | https://github.com/AFNetworking/AFAmazonS3Manager |
License | MIT |
Platforms | ios 6.0, osx 10.8, requires ARC |
Dependencies | AFNetworking/NSURLConnection |
Authors |
AFAmazonS3Manager
is an AFHTTPRequestOperationManager
subclass for interacting with the Amazon S3 API.
Example Usage
AFAmazonS3Manager *s3Manager = [[AFAmazonS3Manager alloc] initWithAccessKeyID:@"..." secret:@"..."];
s3Manager.requestSerializer.region = AFAmazonS3USWest1Region;
s3Manager.requestSerializer.bucket = @"my-bucket-name";
NSString *destinationPath = @"/pathOnS3/to/file.txt";
[s3Manager postObjectWithFile:@"/path/to/file.txt"
destinationPath:destinationPath
parameters:nil
progress:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
NSLog(@"%f%% Uploaded", (totalBytesWritten / (totalBytesExpectedToWrite * 1.0f) * 100));
}
success:^(AFAmazonS3ResponseObject *responseObject) {
NSLog(@"Upload Complete: %@", responseObject.URL);
}
failure:^(NSError *error) {
NSLog(@"Error: %@", error);
}];
Contact
Mattt Thompson
License
AFAmazonS3Manager is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "AFAmazonS3Manager", "version": "3.2.1", "summary": "AFNetworking extension for the Amazon S3 API.", "homepage": "https://github.com/AFNetworking/AFAmazonS3Manager", "social_media_url": "https://twitter.com/AFNetworking", "license": "MIT", "authors": { "Mattt Thompson": "[email protected]" }, "source": { "git": "https://github.com/AFNetworking/AFAmazonS3Manager.git", "tag": "3.2.1" }, "platforms": { "ios": "6.0", "osx": "10.8" }, "source_files": "AFAmazonS3Manager", "requires_arc": true, "dependencies": { "AFNetworking/NSURLConnection": [ "~>2.4" ] } }
Wed, 02 Mar 2016 10:48:03 +0000