AmazonS3RequestManager
AmazonS3RequestManager copied to clipboard
A request manager that uses Alamofire to serialize requests to the AWS S3 (Amazon Simple Storage Solution). Based on AFAmazonS3Manager
The core of this library should not have a dependency on `Alamofire`. Without `Alamofire` you should still be able to serialize a `URLRequest` for Amazon S3. The `Alamofire` manager should...
This library should include support for generating Pre-Signed URLs
The official SDK provides an operation to find out in which region a bucket resides. This comes in handy because this information is sometimes not available.
I have my bucket in Frankfurt (EUCentral1) and I receive this error: > FAILURE: Error Domain=com.AmazonS3RequestManager.error Code=-9999 "The authorization mechanism you have provided is not supported. Please use AWS4-HMAC-SHA256." UserInfo={NSLocalizedFailureReason=The...
The `AmazonS3RequestSerializer` does not depend on `Alamofire` and is able to be used with other networking libraries or a vanilla `NSURLSession`. This class and its dependencies should be refactored into...