AFNetworking is a networking library for iOS and Mac OS X.

learn more… | top users | synonyms

0
votes
1answer
8 views

Using AFNetworking to GET public files from S3 and receive 403

I am trying to download PDF files from our S3 storage. The files are public, and can be accessed through a browser. When using AFNetworking I receive a 403. The code looks like this AFHTTPClient ...
0
votes
1answer
16 views

Afnetworking call doesn't seem to be execute

In my applications appdelegate, I am making an api call using afnetworking just to test things out, and I don't see anything in the logs. Not sure why it isn't working: - ...
1
vote
3answers
33 views

AFImageRequestOperation in order not asynchronous

I am implementing a code that downloads images and saves them in the database of the app, I have an array of objects, each object contains the image url and some other information. To Download the ...
0
votes
0answers
9 views

AFNetworking and Expecta

I am trying to run a project with AFNetworking and I am getting the error Expecta.h file not found Expecta.h is included in AFNetworkingTests.h, a file from the AFNetworking project which I have ...
0
votes
0answers
7 views

SSL Pinning with AFNetworking

In my app I'm using https and a self-signed SSL certificate to secure the connection between my client and the server. I was trying to have the AFNetworking library do SSL Pinning on a copy of my ...
2
votes
4answers
1k views

I want to allow invalid SSL certificates with AFNetworking

I want to allow invalid SSL certificates. My main code is below: myClient = [[MyClient alloc] init]; [myClient getHtml:@"/path/to/the/distination.html"]; The MyClient class code is below: #import ...
0
votes
0answers
15 views

AFNetworking - JSONRequestOperationWithRequest success on 400 status code

I'm using NSMutableURLRequest *request = [self requestWithMethod:@"GET" path:@"paths/" parameters:params]; AFJSONRequestOperation *jsonRequest = [AFJSONRequestOperation ...
0
votes
2answers
16 views

AFNetworking adding parameters to request

I recently followed the CodeSchool course to learn iOS and they recommend using AFNetworking to interact with the server. I am trying to get a JSON from my server, but I need to pass some parameters ...
1
vote
1answer
29 views

How to compare SSL certificates using AFNetworking

In my iPhone app I'm using an https connection with a self-signed SSL certificate to download sensible data (username and password) from a server. This app is for private use only, it is not meant ...
0
votes
1answer
36 views

AFNetworking encodes POST parameter in JSON?

I have the following code: APIClient *client = [APIClient sharedManager]; NSMutableURLRequest *request = [client requestWithMethod:@"POST" ...
0
votes
1answer
9 views

Mapping relationships with AFIncrementalStore

I'm in the process of integrating AFIncrementalStore into my project but I'm having a hard time figuring out how to make relationships work. Let's say I have two models: Document and Page. A ...
1
vote
1answer
13 views

Lazy Loading User Image UITableView - Updating the Image in Request Block not Working

So I am trying to lazyload a user pictures for a custom UITableView (BubbleTableView) NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; [request ...
6
votes
1answer
424 views

AFNetworking/NSURLConnection HTTPS keep alive shows strange behaviour

We're currently dealing with a performance issues in our app, and we believe that some of these issues might be related to the fact that the app and the underlying AFNetworking network stack seems to ...
1
vote
1answer
208 views

AFIncrementalStore and a ton of Core Data fetches

I've been using AFIncrementalStore and decided to profile my Core Data fetch requests. I have no idea why the number of requests would be so large. Any fundamentals I might be screwing up?
0
votes
3answers
50 views

why the table view cells are messed up after refreshing some rows?

I am using UITableView to list some images from Internet. So i use AFNetworking's setImageWithURLRequest:placeholderImage:success:failure:methord, when the image is downloaded, i need to do some ...
0
votes
1answer
23 views

Is this the best way to manage authentication? [closed]

Intro: I currently have two views (the main view & login view). The app always starts on the main view. Main View: Displays html data that I collect once authenticated with the site. Login View: ...
0
votes
1answer
38 views

AFNetworking setImageWithURLRequest reverting to placeholder when scrolled past

I am making a simple reddit app for a school project. I am loading my data from reddit via json (http://www.reddit.com/.json for example) with AFNetworking library. I am displaying each reddit thread ...
0
votes
0answers
16 views

iOS: Better way to authenticate and scrape data?

I'm currently pulling in user data from a site where the user must authenticate before reaching the page where the data exists. I've managed to do so by using a combination of javascript injection ...
0
votes
0answers
15 views

Synchronous AFNetworking calls

I am currently using AFNetworking in one of my iPhone app. It's really a handy library to make asynchronous calls. However, I ran into situations in my application where I need to get the data from ...
0
votes
0answers
20 views

Manage enqueueBatchOfHTTPRequestOperationsWithRequests AFHTTPClient subclass

I want to implement multiple Json requests from a web service with AFNetworking and this AFHTTPClient subclass to create a table View. I will create the tableView in MainViewController. #import ...
1
vote
3answers
59 views

Get underlying dispatch_queue_t from NSOperationQueue

I seem to have some confusion between dispatch_queue_t and NSOperationQueue queues. By default, AFNetworking's AFImageRequestOperation will execute the success callback block on the application's ...
1
vote
0answers
21 views

iOS: Alternate way to return to app from Safari other than custom protocol

I am using AFOAuth1Client to authenticate with a provider (they use DotNetOpenAuth). Unfortunately the provider doesn't like a custom URL protocol such as myapp://success for the callback URL as it ...
1
vote
2answers
32 views

Using AFNetworking to process multiple JSON responses for a single request

I'm trying to find a way to open up a connection to a web service and have that service send down JSON objects on an as-needed basis. Say I request 20 profiles from a service. Instead of waiting for ...
0
votes
0answers
14 views

AFNetworking - Request method as a parameter

I'm seeing in AFHTTPClient documentation these pretty tasks for Making HTTP Requests: - getPath:parameters:success:failure: - postPath:parameters:success:failure: - ...
0
votes
3answers
44 views

Multiple async request to create a dynamic table view in objective c

I am developing a new iOS app. In this app, I have a slide menu. I want to create this menu dynamically with async requests. It's a kind of new LinkedIn menu like this one : Linkedin Menu This menu ...
5
votes
1answer
2k views

AFNetworking - How to setup requests to be retried in the event of a timeout?

I have recently migrated from ASIHTTPRequest to AFNetworking, which has been great. However, the server that I am connecting with has some issues and sometimes causes my requests to timeout. When ...
0
votes
2answers
470 views

totalBytesExpectedToRead in setDownloadProgressBlock remains -1 until download is done

I have been googling to no avail, and hope for your help on this. I tried to download an image using AFHTTPRequestOperation streaming (by setting outputstream). It downloads the file, no problem. But ...
0
votes
3answers
26 views

How populate prototype cell text labels with NSDictionary object populated with JSON data using AFNetworking

New to iOS. I am downloading JSON data using AFNetworking and putting the data in a Dictionary object. This is done in the following code: -(void)locationRequest { NSURL *url = [NSURL ...
0
votes
1answer
25 views

NSURLCache not used by NSURLConnection / AFNetworkingOperation

When I start a request with the NSURLRequestReturnCacheDataElseLoad policy I expect to get the result from the NSURLCache if any, no matter how old it is. However, the system always tries to reach the ...
0
votes
3answers
69 views

Images appear after scrolling table view (AFNetworking)

I am using AFNetworking to download images from server , everything works fine but images wont't be appear unless I scroll table view . here is my code : - (UITableViewCell ...
0
votes
1answer
29 views

NSUrlCache disk limit?

I am trying to store a large array of images on the server and use AFNetworking's image caching feature which takes advantage of NSUrlCache, so that the app wouldn't need to hit the server all the ...
0
votes
0answers
7 views

iOS OAuth client that works with DotNetOpenAuth

I have an API that I need to connect to that does OAuth using DotNetOpenAuth. But, it seems every OAuth client I have tried doesn't work with DotNetOpenAuth. Tried AFOAuth1Client, GTMOAuth and Simple ...
0
votes
0answers
27 views

Downloading/Reading PDF on UICollectionViewCell Tap

I'm building a simple news app that will eventually download PDFs when the user taps a cell in UICollectionView. If the file already exists, I just want the PDF to open for reading. As of now, the ...
0
votes
1answer
31 views

Call WCF service from iOS app

*Background:*I have a "document repository" kind-of app.The iOS app calls a WCF service to download the document as well as to get its metadata(document name,document size,etc).There is also a .Net ...
-3
votes
1answer
29 views

JSON + AFNetworking [closed]

I'm getting the following JSON from WP that uses Event Espresso. I want to extract a few information such as Event's name, Venue and Datetimes. I would also like to implement this using AFNetworking. ...
2
votes
2answers
182 views

AFNetworking HTTP Proxy

I'm having some trouble with AFNetworking and HTTP Proxy settings. Since AFNetworking is built off of NSURLConnection, does it have in-built support for a HTTP Proxy added in the wifi settings of an ...
0
votes
1answer
61 views

Measuring response time in AFNetworking HTTP GET

I am trying to measure time taken per GET request when downloading a file using AFNetworking. I am downloading a file repeatedly in a loop. The problem I am having is that the way I am measuring ...
0
votes
0answers
42 views

how to create JSON file using php for AFNetworking

AFNetworking won't work because of my PHP file: NSURL *url = [NSURL URLWithString:@"http://sahertoday.com/getComments.php?city_id=29"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; ...
0
votes
1answer
16 views

UITableView afnetworking images swap positions

I have a problem with a tableview and images in the cells. To load the images I use AFNetworking with the following code: [celle.thumb setImageWithURLRequest:[NSURLRequest ...
0
votes
1answer
36 views

Download entire website

I want to be able to download the entire contents of a website and use the data in my app. I've used NSURLConnection to download files in the past, but I don't believe it is capable of downloading ...
0
votes
0answers
230 views

Multiple Downloads IOS AFNetworking

I want to download simultaneously from multiple Url's using AFNetworkLibrary. I created 2 AFHTTPRequestOperation requests with 2 Url's & added them to the Operation Queue. but when i log the ...
0
votes
2answers
33 views

Send Nested JSON using AFNetworking

To send registration data to server, I am using JSON is in following form: {"regData": { "City":"Some City", "Country":"Some Country", "Email_Id":"abc@gmail.com", "MobileNumber":"+00xxxxxxxxxx", ...
6
votes
1answer
3k views

Using AFNetworking and HTTP Basic Authentication

Hello the following code successfully connects to my Rails API and returns JSON using AFNetworking. I was wondering what I need to do to edit this to pass in a username and password so my API can use ...
1
vote
1answer
32 views

Is HTML tag make JSON file not valid?

Hey, I have a little problem here. I can load JSON file using AFHTTPRequestOperation with this code AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; ...
0
votes
1answer
23 views

3 Requests per object with AFIncrementalStore using NSFetchedResultsController

I have everything setup with AFIncrementalStore to use Parse as a backend service. Using such a service makes counting API requests important as if I exceed 1MM requests/month (though a successful ...
0
votes
2answers
2k views

How to get the response data out of the NSHTTPURLResponse in the callback of AFJSONRequestOperation?

I have a situation where I need to access the raw response data for an AFJSONRequestOperation, from within the callback block which includes only NSHTTPURLResponse. I am able to get the statusCode ...
1
vote
0answers
24 views

Sign in to wordpress from iPhone app

I am creating an iPhone app for my WordPress membership site. In my app the user faces a log in screen where they enter their username and password and these are sent via POST to an external php page ...
1
vote
1answer
24 views

AFIncrementalStore Unrecognized selector -[NSNull length] error

I'm trying to add AFIncrementalStore to an existing Core Data app with lots of data already in the database. I thought I'd added everything necessary, then I fire up the app, and during the initial ...
0
votes
1answer
36 views

Using AFNetworking with authentication fails with correct credentials

I'm trying to download a .sqlite file from my companies FTP site using AFNetworking. Each FTP user has their own folder on my server. I found this question to handle the authentication, and this ...
1
vote
1answer
46 views

AFNetworking NSThread

I'm researching AFNetworking and noticed that it creates it's own NSThread. As far as I know apple discourages using NSThread now. Is this acceptable practice for AFNetworking to create is's own ...

1 2 3 4 5 19