Giter Club home page Giter Club logo

Comments (8)

a2 avatar a2 commented on July 21, 2024

👍

from afamazons3manager.

a2 avatar a2 commented on July 21, 2024

In the meantime, I was able to use a combination of the AWS iOS SDK and AFNetworking 2.0.

The following sample is from my AFHTTPSessionManager subclass:

NSString *key = /* ... */;
NSString *bucket = /* ... */;

S3PutObjectRequest *s3Request = [[S3PutObjectRequest alloc] initWithKey:key inBucket:bucket];
/* configure 's3Request'... */

/* 's3Client' is an AmazonS3Client instance. */
NSMutableURLRequest *request = [self.s3Client signS3Request:s3Request];

/* For some reason, the signed S3 request comes back with '(null)' as a host. */
NSString *urlString = [NSString stringWithFormat:@"%@/%@/%@", self.s3Client.endpoint, bucket, key];
request.URL = [NSURL URLWithString:urlString];

NSURLSessionDataTask *task = [self dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
    /* ... */
}];
[task resume];

from afamazons3manager.

mrichtsfeld avatar mrichtsfeld commented on July 21, 2024

I would need it for OSX and iOS so using AWS iOS SDK is unfortunately not an alternative for me.

from afamazons3manager.

klaas avatar klaas commented on July 21, 2024

plus 1 for the AFNetworking 2.0 support!

from afamazons3manager.

cameronehrlich avatar cameronehrlich commented on July 21, 2024

+1 for AFNetworking 2.0 support also!

from afamazons3manager.

evoL avatar evoL commented on July 21, 2024

I've made a pull request (#32) that adds AFNetworking 2.1 support.

If you want to use it with 2.0 without warnings, use the 2.0 branch. More details in the description. :)

from afamazons3manager.

a2 avatar a2 commented on July 21, 2024

@evoL 👍 !!!

from afamazons3manager.

mattt avatar mattt commented on July 21, 2024

Thanks for your PR, @evoL. In a crazy coincidence, I was just working on this earlier today, with a7f2b9c.

I'll be cutting 2.1 and 2.2 (forthcoming) tags for equivalent AFNetworking releases when I get a chance.

Sorry for the wait, everyone. The good news is that I now have an active use case for this project again :)

from afamazons3manager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.