Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.42 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.42 KB

AFAmazonS3Client

AFAmazonS3Client is an AFHTTPRequestOperationManager subclass for interacting with the Amazon S3 API.

As the S3 API returns XML responses, you may find it useful to set AFOnoResponseSerializer as the response serializer.

Example Usage

#import <AFAmazonS3Client/AFAmazonS3Manager.h>

AFAmazonS3Manager *s3Manager = [[AFAmazonS3Manager alloc] initWithAccessKeyID:@"..." secret:@"..."];
[[self.s3Manager requestSerializer] setRegion:AFAmazonS3USStandardRegion];
[[self.s3Manager requestSerializer] setBucket:@"..."];

[s3Manager postObjectWithFile:@"/path/to/file"
              destinationPath:@"https://s3.amazonaws.com/example"
                   parameters:nil
                     progress:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
                        NSLog(@"%f%% Uploaded", (totalBytesWritten / (totalBytesExpectedToWrite * 1.0f) * 100));
}
                      success:^(id responseObject) {
                        NSLog(@"Upload Complete");
}
                      failure:^(NSError *error) {
                         NSLog(@"Error: %@", error);
}];

Contact

Mattt Thompson

License

AFAmazonS3Client is available under the MIT license. See the LICENSE file for more info.