AFNetworking is a networking library for iOS and Mac OS X.
0
votes
1answer
16 views
Get the entire XML downloaded data
I have an outdated application which use to download an XML document and parse it on the iPhone app, I used the NSURLConnection for that purpose:
-(void)connection:(NSURLConnection *)connection ...
0
votes
1answer
20 views
CocoaPods lint failing
I'm having some issues with running pod spec lint on a small static library that I'm building. The library in question is https://github.com/seanoshea/ios-etsy-sdk and the output from the linter is ...
0
votes
1answer
20 views
Copying AFHTTPRequestOperation results in error “request body stream exhausted”
Problem
My app lets users upload photos. This works great.
Now, I am trying to implement a "retry" function if the photo upload fails, for example due to a slow connection.
Here's my retry code:
...
0
votes
1answer
32 views
UITableView with images crashes app when I scroll down a lot
I have this simple UITableView and each cell has an image corresponding to it. All I'm doing is displaying a title for the image and the image itself in each cell. Here is my cellForRowAtIndexPath:
- ...
0
votes
1answer
12 views
Why is success block being called with incorrect path?
I accidentally mistyped the post path and noticed that although it's being wrong, the success block is called:
[[APIClient sharedInstance]
postPath:@"api_url"
parameters:params ...
0
votes
1answer
32 views
AFNetworking & handling NSOperationQueue - execute code on completion and track progress
I'm using the AFNetworking library, which is excellent, however I'm having trouble keeping track of operations in the NSOperationQueue. I am adding NSOperation objects to the NSOperationQueue, and I ...
0
votes
1answer
13 views
Using AFNetworking to download a pdf from the web in appdelegate and then trying to load that stored pdf in a UIWebview on another page
I am using AFNetworking to download a pdf (that will change on a weekly basis) and save it into the documents directory with this code:
//Get the PDF
NSURLRequest *request = [NSURLRequest ...
0
votes
1answer
28 views
send image along with other parameters with AFNetworking
I am updating an old application code which used ASIHTTPRequest with AFNetworking. In my case, I am sending a bench of data to API, these data are different types: Image and other.
Here is the code I ...
0
votes
1answer
42 views
Cannot connect iOS using AFNetworking to asp.net webservices
I am trying to connect from iOS to asp.net webservices and i am getting error 500. The webservices are working if connected from the web using jQuery.ajax but not from iOS. Are there any settings ...
0
votes
1answer
12 views
AFNetworking duplicate content-length on 3g
We are using AFNetworking to handle URL requests back to the server.
For some reason we are seeing duplicate content-length headers only when working on 3G. When we are in WIFI there is no problem.
...
0
votes
0answers
16 views
uninitialized constant AFMotion::HTTP::AFFormURLParameterEncoding (NameError)
Recently afmotion start to rise error below, even for simple request
$ rake
Build ./build/iPhoneSimulator-6.1-Development
Build vendor/Pods
Simulate ...
0
votes
0answers
16 views
AFNetworking error 401 with Core Data - Parse Sync tutorial
I am going through a tutorial 'How To Synchronize Core Data with a Web Service' at
http://www.raywenderlich.com/15916/how-to-synchronize-core-data-with-a-web-service-part-1
...
0
votes
1answer
19 views
AFNetworking url request every 20 sec
I want to download some information from url every 20 seconds and update view based on that info (2-3 labels change text values). I'm using AFNetworking for making request operations in my app.
...
0
votes
1answer
42 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
0
votes
1answer
25 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 ...
-1
votes
1answer
29 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:
- ...
0
votes
2answers
22 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
28 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 ...
1
vote
1answer
42 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
25 views
Adding parameters to request with AFNetworking
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
37 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
58 views
AFNetworking encodes POST parameter in JSON?
I have the following code:
APIClient *client = [APIClient sharedManager];
NSMutableURLRequest *request = [client requestWithMethod:@"POST"
...
1
vote
1answer
25 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 ...
0
votes
1answer
26 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
3answers
56 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 ...
1
vote
1answer
16 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 ...
0
votes
0answers
22 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
1answer
54 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
24 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 ...
1
vote
0answers
25 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
35 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
29 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 ...
0
votes
0answers
17 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:
- ...
1
vote
3answers
70 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 ...
0
votes
3answers
52 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 ...
0
votes
1answer
28 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
82 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
32 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
8 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 ...
1
vote
3answers
39 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
1answer
41 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
30 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.
...
0
votes
3answers
40 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
0answers
58 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
74 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
1answer
19 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
49 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
2answers
42 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",
...
1
vote
1answer
36 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
32 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 ...


