Tagged Questions

AFNetworking is a networking library for iOS and Mac OS X. At its core is AFHTTPRequestOperation, a thin wrapper around NSURLConnection, which provides a block callback for when the operation completes. Everything else is built on top of that in a way that's completely modular: take what you need, ...

learn more… | top users | synonyms

39
votes
6answers
3k views

What major ASIHTTPRequest features is AFNetworking missing?

With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking. However, I've not yet found a good comparison of the features of the two libraries, so I ...
9
votes
1answer
989 views

ARC, Blocks and Retain Cycles

Working on an iOS project that targets 4.0 and 5.0, using ARC. Running into an issue related to blocks, ARC and referencing an object from outside the block. Here's some code: __block ...
6
votes
3answers
501 views

Switching to AFNetworking from ASIHTTPRequest - Issue with ASINetworkQueue

I'm working on a problem where I have to download around 10 different large files in a queue, and I need to display a progress bar indicating the status of the total transfer. I have this working ...
4
votes
1answer
540 views

ASIHTTPRequest vs AFNetworking framework

I am about to develop application for iPad and it has enormous amount of background thread network calls. I would like to know which one will be better? ASIHTTPRequest still works but not ...
4
votes
2answers
691 views

Can AFNetworking return data synchronously (inside a block)?

I have a function using AFJSONRequestOperation, and I wish to return the result only after success. Could you point me in the right direction? I'm still a bit clueless with blocks and AFNetworking ...
4
votes
1answer
420 views

Posting JSON as the body of a POST request using AFHTTPClient

I am trying to find a way, using AFNetworking, to set the Content-Type header to be application/json and to POST with JSON in the body. The methods that I'm seeing in the documentation (postPath and ...
3
votes
1answer
48 views

Streaming JSON with AFNetworking on IOS

What would be the most elegant way to receive data from a streaming JSON API using AFNetworking? AFNetworking provides excellent support for receiving non-streaming data from JSON APIs, but I couldn't ...
3
votes
2answers
1k views

AFNetworking Post Request with json feedback

I am using AFNetworking and creating a post request for which I require json feedback. The code below works however I have two main questions; where do I release the ActivityIndicator Manager? The ...
2
votes
1answer
61 views

How to connect to HTTPS Server with self-signed cert using AFNetworking?

I just started to work in a small company, that has no properly signed SSL-certificates yet. But their test HTTP Servers offer HTTPS exclusively. I want to create a iOS client using AFNetworking. How ...
2
votes
1answer
70 views

Issue with retrieving JSON with AFNetworking

I am trying to retrieve some JSON data with AFNetworking. My server component (PHP/ZendFramework) delivers the following response: >curl -i ...
2
votes
1answer
125 views

AFNetworking + JSONKit not working together

AFNetworking + JSONKit + iOS 5.0+ = JSON parsing does not work (returns nil objects when trying to parse). AFNetworking + iOS 5.0+ = JSON parsing works fine. AFNetworking + JSONKit + iOS 4.X = JSON ...
2
votes
1answer
188 views

AFNetworking - Download multiple files + monitoring via UIProgressView

I am trying to change my code from ASIHTTPRequest to AFNetworking. Currently I want to select 10-15 different HTTP URLs (files) and download them to a documents folder. With ASIHTTPRequest that was ...
2
votes
1answer
67 views

AFNetworking: encoding URL strings containing '%'-sign fails

I'm using AFNetworking in my iOS App. I've discovered a problem that occurs when request parameters contain percent signs. Then the encoding fails. The method AFURLEncodedStringFromStringWithEncoding ...
2
votes
1answer
129 views

Clarification about weak references and a retain cycles

I have the following code: AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest: request]; operation.completionBlock = ^{ if([operation hasAcceptableStatusCode]){ ...
2
votes
1answer
221 views

AFNetworking how to check if upload operation has finished or failed

How can I check if AFNetworking has finished the upload of a file? And how I could check if there were some problems? this is my code: AFHTTPClient *client= [AFHTTPClient clientWithBaseURL:[NSURL ...
2
votes
1answer
519 views

Does AFNetworking have backgrounding support?

I'm in the process of investigating AFNetworking as a replacement for ASIHTTPRequest, and notice a complete lack of information on whether it supports background downloads/uploads. With an ...
1
vote
1answer
78 views

AFNetworking post request not getting through to Sinatra app

I'm trying to post a request from my iPhone with a Sinatra API I made. Currently all my Sinatra app is doing is printing out the request that has been sent to it. This is the code for that: post ...
1
vote
0answers
53 views

Empty JSON returned by AFNetworking on iOS5

I'm trying to load a simple JSON inside my iPhone app using the AFNetworking library. I'm using two different approaches: NSURL *url = [NSURL URLWithString:@"http://www.mysite.com/test.json"]; ...
1
vote
3answers
66 views

JSON file set content type to application/json AFNetworking

i wrote a .json file and want to download it with AFNetworking. But AFNetworking complains: fail Expected content type {( "text/json", "application/json", "text/javascript" )}, got ...
1
vote
1answer
81 views

Does the popular open-source framework AFNetworking have a mechanism for logging requests/responses to console?

The title says it all really! I'd like to pump out the raw-ish HTTP requests/responses to the console to aid debugging. I've looked at the various docs on GitHub and had a quick search through the ...
1
vote
1answer
164 views

How can I deal with AFJSONRequestOperation 's response when my service return text/html?

I'm new to AFNetWorkingk and my question is when I use AFJSONRequestOperation,my service returned a text/html result! Any one can give me some suggestions?Or other methord to implement this?
1
vote
2answers
193 views

Posting with AFNetworking, parameters not being sent?

Here's my Objective-C code: NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: @"fname", @"fname", @"age", @"age", ...
1
vote
2answers
124 views

AFNetworking and auto-suggest

I'm using AFNetworking for my iOs app. I need to implement a search-suggest like in many other apps or search bars on websites. So basically launch GET requests but cancelling old ones as users tap ...
1
vote
1answer
220 views

AFNetworking and Cookies

I'm using AFNetworking as a network layer for my iPhone app, which connects to a Rails server that uses Devise for authentication. If I sign in (with a POST call) providing username/password after ...
1
vote
1answer
161 views

JSONRequestOperationWithRequest issue from the AFNetWorking

I am doing a reading on the AFNetworking project and I am being stuck at this point: (AFJSONRequestOperation *)JSONRequestOperationWithRequest:(NSURLRequest *)urlRequest ...
1
vote
1answer
123 views

is there an easy way to get the http status code in the failure block from AFHTTPClient?

I see that there is a list of accepted http status codes that I can modify, but I think it would be cleaner if I can get the http status code in the failure block .. Ok, found the answer with the ...
1
vote
2answers
837 views

is there an example of AFHTTPClient posting json with AFNetworking?

Looking for an example of how to post json with AFHTTPClient. I see that there is a postPath method which takes an NSDictionary and the AFJSONEncode method returns an NSData. Is there an easy way to ...
1
vote
1answer
307 views

AFnetworking downloading multiple files

I'm using this code to loop through an array to download multiple files and write to disk. -(void)download { //set url paths for (NSString *filename in syncArray) { NSString *urlpath = [NSString ...
1
vote
2answers
367 views

AFNetworking HTTPClient subclass with XMLParser

I am writing a small iOS app that queries a XML REST webservice. The networking framework in use is AFNetworking. Situation To query the webservice I subclassed AFHTTPClient: @interface MyApiClient ...
1
vote
1answer
461 views

AFNetworking Uploading a file

Does any one have a full implementation of uploading a file using AFNetworking. I have found some code on the internet but it is incomplete. The code I have found is here: AFHTTPClient *client= ...
1
vote
2answers
1k views

Converting from ASIHTTPRequest to AFNetworking

I am converting my app routines from ASIHTTP to AFNetworking due to the unfortunate discontinuation of work on that project ... and what I found out later to be the much better and smaller codebase of ...
1
vote
1answer
392 views

AFNetworking automatically wraps requests in JSON?

I'm having a small problem with AFNetworking. Im trying to have a simple call to a path with POST parameters (e.g. http://myserver.com/index.php with parameters myParam=1) I've tried using both ...
1
vote
2answers
287 views

Weird including problems with AFNetwork?

I've just downloaded AFNetworking to try and mess with it, but i'm having weird errors on including it in my project. I've just created an empty test project and dropped both AFNetworking and JSONKit ...
1
vote
2answers
271 views

cancel block request in already deallocated object

so i'm using AFNetworking for doing asynchronous requests with web-services. AFJSONRequestOperation *operation = [AFJSONRequestOperation operationWithRequest:request success:^(id JSON) { ...
1
vote
1answer
2k views

AFNetworking Post Request

I'm a newbie in obj-c and have been using asihttp for some of my projects. When doing a post request in asihttp its done this way. ASIFormDataRequest *request = [ASIFormDataRequest ...
0
votes
0answers
14 views

AFNetworking (AFJSONRequestOperation) convert to AFHTTPClient

I have the following code that works well but I need a little more control over it and especially need to start using the Reachability code in 0.9. NSString *urlString = [NSString ...
0
votes
0answers
13 views

How do you get mutable dictionaries from AFNetworking and AFJSONRequestOperation?

I'm using JSONKit with AFNetworking's AFHTTPClient (with AFJSONRequestOperation) and I can't seem to figure out how one might trigger the use of the mutableObjectFrom... methods of JSONKit rather than ...
0
votes
1answer
23 views

afnetworking - exc_bad_access in startMonitoringNetworkReachability

For a project I have to use AFNetworking. Got fresh copy from github and the iOS example project seems to be working. However - when I copy over the "AFNetworking" folder to a new Xcode project and ...
0
votes
1answer
12 views

How to update MBProgressHud with AFHTTPRequestOperation

I downloaded some examples in order to learn Ios. The examples include: AFNetworking; Inapp purchase (from RayW); MBProgressHud; In my viewcontroller i push a UIbutton which triggers the Inapp ...
0
votes
1answer
21 views

Picture download overhead

My app has an UITableView. Its cells downloads pictures from tumblr using AFNetworking. This actually does work but I noticed that my app need like 5 MB more of memory as soon as I start downloading ...
0
votes
3answers
64 views

How do I handle asynchronous processes in iOS ViewControllers?

I'm working on an app at the moment which allows users to authenticate to a remote server using an HTTP request (in JSON format). I've created a separate class to handle the API Request as it's ...
0
votes
2answers
48 views

AFNetworking 'classic' POST request

I'm learning to use AFNetworking. I know I can use AFHTTPClient for making a POST request with json. My question is: is there a way to make a standard POST request? My server backend doesn't accept ...
0
votes
1answer
66 views

AFNetworking set default value for POST request

I'm trying to using AFNetworking after the switch from ASIHTTPRequest. I would use AFHTTPClient for making request to my api backend server. Currently I make a request (without AFNetworking) for ...
0
votes
3answers
108 views

AFNetworking and No Internet Connection scenario

I use AFNetworking in my app for every request (like login, get data from url, etc). Take this for example: an user click on the login button and there's no connection, how to instantly display a ...
0
votes
1answer
99 views

AFNetworking + JSON + progress download

I'm using AFNetworking and like it very much. I need to get JSON data from my server and it's OK, it works perfectly. I added the setDownloadProgressBlock but I think it can't work with JSON ...
0
votes
2answers
62 views

iOS network operation when app become active

In my current iOS app, I need to perform several network operation when the app becomes active (I'd rather get everything at once than to query things when user click on dedicated tab). I'm using a ...
0
votes
0answers
55 views

How to verify in-app purchase receipt?

I am trying to verify my IAP receipt with the following code, but it's not working: - (void)completeTransaction:(SKPaymentTransaction *)transaction { NSString* receiptString = [self ...
0
votes
2answers
182 views

Get JSON with HTTP Authentication with AFNetworking

I am trying to get a JSON from my hudson url address and authenticate my (Mac OS X) application using the HTTP Authenticate. Following the example I'm using: // AppDelegate.m - (void) doSomething { ...
0
votes
1answer
60 views

AFNetworking upload file to server, parameters

I am trying to upload file with like this: NSMutableDictionary * lParameters = [NSMutableDictionary dictionary]; [lParameters setObject:@"temp.jpg" forKey:@"file"]; NSMutableURLRequest ...
0
votes
2answers
134 views

Resetting basic authentication credentials with AFNetworking

I am writing a REST client (with AFNerworking) and need the ability to trigger the creation of a new session within a single instance of an application. In other words, I would like to: 1 - ...

1 2