AFNetworking is a networking library for iOS and Mac OS X.
0
votes
2answers
60 views
issue with returned JSON MIME type
I have a php API which return a JSON data, when trying to receive that JSON from my application, I got the follwoing error:
"Expected content type {(\n \"text/json\",\n \"application/json\",\n ...
0
votes
0answers
38 views
Logging into Instapaper with AFNetworking, how do I handle login redirects?
There's a username and a password box, and when filled in and "LOGIN" is pressed, I want it to log the user into Instapaper (and then I can scrape the articles for use in the app). Effectively ...
0
votes
0answers
105 views
issue with pulling data from Afnetworking completion block to separate uiviewcontroller
Hi I have a problem I'm facing right now with pulling data from Afnetworking completion block to a separate uiviewcontroller. Right now I have a three files:
1st file: the parent class ...
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?
-1
votes
1answer
35 views
Logging into Instapaper with AFNetworking
If I wanted to login to Instapaper (http://www.instapaper.com/user/login) within an app where the user has put the username and password within a UITextField and login using AFNetworking, how would I ...
1
vote
1answer
64 views
Upload Two images to WebServer
Im trying to upload two images to my web server. Heres what i do now, to upload one image :
NSData *imageData = UIImagePNGRepresentation(imageToSend);
// setting up the URL to post to
NSString ...
0
votes
1answer
56 views
Json Accelerator and AFNetworking
When the operation is running, I can not enter data in JSON model CREATED BY ACCELERATOR.
Can you tell me what I am doing wrong?
{
[super viewDidLoad];
NSLog(@"you are in a ...
1
vote
2answers
158 views
Adding NSData into NSDirectory (JSON) getting Invalid type in JSON write (NSConcreteMutableData) error
I am trying to add an Image into my JSON file that I want to post on the server. I am using the following code but I keep on getting Invalid type in JSON write (NSConcreteMutableData) error. The code ...
0
votes
1answer
95 views
Posting JSON ordered list of values via AFNetworking AFHTTPClient
I know I can post JSON data when setting AFHTTPClient default encoding to AFJSONParameterEncoding then on the call:
- (void)postPath:(NSString *)path
parameters:(NSDictionary *)parameters
...
0
votes
1answer
135 views
iOS: Uploading a ZIP file with AFNetworking
I have to upload a ZIP file to a server, I am using this code:
NSMutableURLRequest *request = [httpClient multipartFormRequestWithMethod:@"POST" path:methode parameters:nil constructingBodyWithBlock: ...
0
votes
1answer
158 views
Why is my JSON request failing with AFNetworking?
I'm accessing the Clear Read API to extract the article text from a link, and the API works by putting in parameters into this URL: http://api.thequeue.org/v1/clear?url=&format= where after URL ...
-2
votes
1answer
59 views
Large amount of errors occurring when building my project that includes AFNetworking [closed]
Could anyone tell me what's going on? Bunch of errors occurred and I don't know why:
/JSONKit.m:680:12: Direct access to objective-c's isa is deprecated in favor of object_setClass() and ...
0
votes
2answers
140 views
In AFNetworking's JSONRequestOperationWithRequest:success:failure: method, what type of object is the JSON response?
It gives you a variable called JSON of type id, but how do I manipulate this? Is it a string? Do I have to serialize it first? How exactly do I interact with it?
3
votes
3answers
224 views
Handle HTTP Header Field name on iOS/OSX
As we know HTTP header names are case insensitive which is specified in RFC2616.
However I found that all popular iOS/OSX framework such as ASIHTTRequest , AFNetworking ,RestKit test whether or not a ...
0
votes
1answer
193 views
Using AFNetworking and AFHTTPClient to run many URLs through an API - what am I doing wrong?
I'm trying to run a bunch of URLs through the Clear Read API (basically extracts the article portion from a URL) and I'm using the AFNetworking Library.
I have an AFClearReadClient class which is a ...
0
votes
1answer
42 views
when forming request using requestWithURL, url changes & also goes missing
When I investigate this method in xcode debug mode, a few strange things happen when constructing the request.
Extra characters get added to the urlString. For instance, if SessionId = "abc", then ...
0
votes
1answer
195 views
iOS AFNetworking GET/POST Parameters
I want to do a POST request with AFNetworking which contains GET and POST parameters.
I am using this code:
NSString *urlString = [NSString ...
0
votes
1answer
164 views
Using AFNetworking to queue many JSON requests and save their responses
I'm new to AFNetworking and I'm interested in using it to handle a few dozen JSON requests (for example, using a web service's API that responds with JSON) for my application, but I'm having some ...
0
votes
1answer
207 views
How to wait until a async call complete, including completion block (AFNetworking)
At first
I have this
ZTCAPIClient *api = [ZTCAPIClient sharedClient];
__block BOOL sessionSuccess = NO;
//Get session
[api getPath:@"api-getsessionid.json" parameters:nil ...
1
vote
2answers
237 views
AFNetworking - POST Method with JSON parameter: var = {JSON}
I'm using a webservice that accepts POST method like this
KEY d
; VALUE {JSON REQUEST}
for example (login):
d={ "action": [ "login" ], "request_data": { "login": { "user":
"user", ...
0
votes
1answer
115 views
Parsing JSON with AFHTTPClient
I'm using the AFNetworking library to parse json using the AFHTTPClient. I can verify that the json is being parsed within the client block and send that data to my json model. However, when I try to ...
-1
votes
2answers
132 views
Throttling a POST with AFNetworking
I am trying to use AFNetworking to post an XML-RPC request. The AFNetworking library only offers throttling for form data (throttleBandwidthWithPacketSize:delay: on AFMultipartFormData).
How can I ...
0
votes
2answers
107 views
How to presentModalViewController in applicationDidFinishLaunching?
Here is my situation:
I have a TaskListViewController(UITableView) which need Internet.
So I used AFNetworking to do some login work(with demo account and password) before the TaskList is showed.
Now ...
-1
votes
4answers
164 views
Need assistance regarding calling REST web service with credentials
In my current project I need to call a REST based web service, my colleague created a simple web service(nodeJS & express framework) which return data in json format. I was successful calling it ...
0
votes
1answer
47 views
Using AFJSONRequestOperation On For Loop on iPhone SDK
I have this code that I want to eager load using AFJSONRequestOperation before continuing with the for loop but somehow it doesn't work. The code below is inside my for loop. How can I prevent my loop ...
1
vote
0answers
48 views
How to make an offline browser on ios?
I need to make an offline browser on ios, which should persistent the specified webpages to the disk with the media resource such as image,css,js. At the same time, the offline browser should be able ...
-2
votes
3answers
168 views
AFNetworking returning NSCFData; issue with registerHTTPOperationClass [closed]
I am new to AFNetworking and am making a call to a simple login api that returns json like:
{"status":"success","data":{"auth_token":"12jt34"}}
I'm doing it via the following but it is returning ...
0
votes
0answers
116 views
Serially queueing conditional HTTP requests with AFNetworking and NSOperationQueue
I am refactoring some existing code. It has about 20 HTTP requests which are executed serially, assuming the previous one returns HTTP status 200 (OK). If the status is not 200, the process stops. ...
1
vote
0answers
75 views
AFNetworking AFHTTPClient AFHttpRequestOperation deadlock on POST
I have been having a strange issue where a file upload seems to hang up without my app hanging. I'm assuming this is some sort of deadlock inside AFHTTPClient, although it could be my hosting provider ...
0
votes
0answers
68 views
How can improve http request performance on an iOS device during App start?
I have an iOS app where I need to load a lot of stuff (JSON data, Images ...) initially after app start (after appdelegate calls the first view). Currently I am using AFNetworking for my requests ...
2
votes
1answer
130 views
JSON Request Working with NSURLRequest but not with ASIFormDataRequest
I am sending two JSON dictionaries to an url. This is working with NSURLRequest but not with ASIFormDataRequest. When sending the same request with ASIFormDataRequest it shows the following error -
...
0
votes
1answer
140 views
AFJSONRequestOperation Crash data parameter is nil
I'm experiencing a strange issue that only happens intermittently when I run my app. I'm attempting to pull down JSON from two different sources, using AFNetworking. Occasionally, when the operations ...
0
votes
0answers
43 views
AFNetworking post data to server
How can I post a string to server ? In java I do this,
but I do not know how to do in Objective-C using AFNetworking?
Thank you.
URL url = new URL(urlstr);
con = (HttpURLConnection) ...
0
votes
1answer
74 views
requesting api with authentication keys using AFHttpClient
I am trying to use AFHTTPClient to make a rest api call. I am trying to make the api request by passing the Authentication key I got from registering to the api. When I run the app, I get 403 error. I ...
1
vote
1answer
67 views
persistentStoreManagedObjectContext vs mainQueueManagedObjectContext
Good evening!
So I've been having some trouble understanding what the hell is going on while saving my data in Core Data. First of all, a quick question:
1) When should I be using the ...
0
votes
0answers
370 views
NSDebugDescription = “JSON text did not start with array or object and option to allow fragments not set.”;
I am using AFJSONRequestOperation to request a server and parse the returned JSON response, but while parsing, I got this error:
NSDebugDescription = "JSON text did not start with array or object and ...
0
votes
1answer
140 views
AFNetworking - reachablity returning always -1
i use latest AFNetworking sources and the reachablity doesn't work for me, it never fires reachablity block and the [httpClient networkReachabilityStatus] always returns -1. ...
0
votes
2answers
86 views
App Crashes when ReloadData done for the tableView
I am using the following code to reload my tableView when its done adding all the data to my Mutable Arrays, but the app always crashes
- (void)viewDidLoad
{
[super viewDidLoad];
// Do ...
0
votes
0answers
25 views
MultipartFormdata file not adding file to request body
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
NSURL *fileUrl = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"sample" ofType:@"jpeg"]];
...
1
vote
1answer
199 views
AFJSONRequestOperation crashing with “data parameter is nil” NSJSONSerialization error
I previously asked a similar question on this but didn't get much help and have now looked into it further and still can't see why I have a problem.
NSURL *url = [NSURL ...
1
vote
2answers
398 views
Downloading Files in queue using AFNetworking in iPhone
I need to download multiple files in queue. Right now my code is working and all files are downloading simultaneously, However i need to download one file at a time, and all other files are in queue, ...
0
votes
1answer
134 views
Cannot use Success and Failure block with UIImageView+AFNetworking.h
I am trying to add a Success and Error block to check when the image is loaded so that I can use NSCache to dynamically resize the image. But when I try
[scribbleImage setImageWithURL: [NSURL ...
-1
votes
2answers
37 views
AFNetworking response
MyHttpClient *sharedHttpClient = [MyHttpClient sharedClient];
[sharedHttpClient getPath:BASERURL_GENERAL_APPEND_PATH parameters:reqParameter success:^(AFHTTPRequestOperation *mOperation , id ...
0
votes
1answer
58 views
Weird error with NSJSONSerialization and UIPIckerView
The way I have my program working is it pulls data down into the program via AFHTTPClient. Then I get my response data. I then take this data and parse it into a NSMutableArray via ...
0
votes
1answer
108 views
Callback for DidReceiveData in AFNetworking
I have a GET service call for which I must perform certain actions when a response is received.
The delegate methods, blocks actually, in AFNetworking, to my knowledge, only notify when a request is ...
0
votes
0answers
43 views
Dynamically changing the height of the cell and UIImage based on the ratio of actual image
This is what I have tried so far
I defined a global variable
float imgHeight;
Then in - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath I do ...
1
vote
2answers
127 views
AFNetworking client subclass not parsing responses
I was trying to implement an AFNetworking client by subclassing AFHTTPClient and setting base path
#define WineAPIBaseURLString @"http://localhost:3000/"
@implementation WineAPIClient
...
0
votes
2answers
145 views
AFNetworking UIImage NSURL
I use AFNetworking to get beer details from my rails api, and I want to show an image from a url that is returned.
Example API response
description = "Super tasty";
id = 3;
"label_url" ...
0
votes
1answer
224 views
How to download multiple files in Queue in iOS
i need to download multiple files in queue. When i try to download single file it works perfectly fine, however when i try to download multiple file it start downloading at the same time with first ...
0
votes
0answers
99 views
Need help , JSON params POST not recognize with AFNetworking
[Solved]
I'm trying to edit AFHTTPClient.m to make it work with POST Method in
-(NSMutableURLRequest *)requestWithMethod:(NSString *)method
path:(NSString *)path
...





