0
votes
0answers
19 views

AFNetworking - JSONRequestOperationWithRequest success on 400 status code

I'm using NSMutableURLRequest *request = [self requestWithMethod:@"GET" path:@"paths/" parameters:params]; AFJSONRequestOperation *jsonRequest = [AFJSONRequestOperation ...
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 ...
-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. ...
0
votes
3answers
29 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
47 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
2answers
36 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
33 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]; ...
-1
votes
0answers
39 views

AFNetworking deep JSON parsing

I have seen many questions on how to parse JSON in AFNetworking. I have no problem using ADJSONRequestOperation to do very simple operations, but cannot seem to figure out how to parse a deeper json ...
-2
votes
0answers
14 views

AFNetworking JSON array to php [duplicate]

I have created a json array as JSON ( { step1 = ( { key1 = value1; }, { key2 = ...
0
votes
0answers
85 views

AFNetworking post JSON string

I was trying to post JSON string to php. I have created JSON as NSMutableArray *arr = [[NSMutableArray alloc] init]; [arr addObject:@{@"step1":[[NSArray alloc] ...
0
votes
0answers
33 views

Searching and Address on Google Using AFNetworking

I've been trying to search an address on google and return the Latitude and Longitude of that address. I'm almost there =D The problem is.. I get a giant json back and I'm not sure how to get only ...
1
vote
3answers
37 views

How to retain order of JSON data retrieved with AFNetworking?

I am using AFNetworking to retrieve JSON data from a web service. Part of the response string I get is: {"DATA":{"LEASE TYPE":"3 Yrs + 0 renew of 0 Yrs","LANDLORD":"","TENANT":"test comp"... and ...
0
votes
1answer
87 views

AFNetworking: getPath:parameters-method causes an issue

I´m trying to do a GET request to my web service, using AFNetworking(great framework). This is the code for the request: AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:[NSURL ...
0
votes
0answers
38 views

iOS Nimbus Photo / CatalogTableViewController connected to webservice

I'm unsure how I would be able to set the Nimbus CatalogTableViewController class's tableContents through a JSON webservice to dynamically control what facebook albums are listed. I have experimented ...
0
votes
3answers
97 views

Using PHP to Print JSON and then save as a JSON file

I am currently using the following script to print a json file <?PHP include ('connect.php'); $get_student = mysql_query("SELECT * FROM student ORDER BY name asc"); $anArray = json_decode ...
0
votes
1answer
71 views

Setting array equal to JSON array - Xcode

I'm trying to figure out how to populate a table from a JSON array. So far, I can populate my table cells perfectly fine by using the following code: self.countries = [[NSArray ...
0
votes
1answer
94 views

AttributeError: object has no attribute 'json_args'

I am trying to use AFHTTPClient to connect with a tornado server. Here is my code from client: - (id)initWithBaseURL:(NSURL *)url { self = [super initWithBaseURL:url]; if (!self) { ...
0
votes
2answers
61 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
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 ...
0
votes
2answers
141 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?
1
vote
2answers
239 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
116 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 ...
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
0answers
100 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 ...
0
votes
1answer
111 views

AFJSONParameterEncoding makes the data the entire key and there is no value

Good afternoon! I am trying to do a simple POST request and sending over my parameters as JSON to my Django server. Here is the code: NSDictionary* params = [[NSDictionary alloc] ...
0
votes
3answers
151 views

Putting JSON into an Array

I'm a noob when it comes to requests and JSON. Inside my app I send to the server and get back stuff so I can use it of course. I tried looking up different things but none really seem to be what I'm ...
0
votes
2answers
185 views

iOS - Strategy for saving and persisting JSON results with AFNetworking

I'm writing an iPhone app that loads Menu data from a database in the cloud. I am using AFNetworking (specifically AFJSONRequestOperation) to download the data in appDelegate. Everything works fine up ...
1
vote
2answers
494 views

How to add custom header to AFNetworking on a JSONRequestOperation

Hi I have the following code accessing a URL: NSString * stringURL = [NSString stringWithFormat:@"%@/%@/someAPI", kSERVICE_URL, kSERVICE_VERSION]; NSURLRequest * request = [NSURLRequest ...
0
votes
1answer
240 views

Parsing JSON in iOS 5 with AFNetworking

I want to parse JSON data received from the Server with the AFNetworking Framework in iOS 5: AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request ...
-1
votes
2answers
112 views

AFNetworking JSON parsing - fails of unknown reason

im trying to parse some JSON. for simplicity ill explain using the default example at github: when running: NSURL *url = [NSURL URLWithString:@"http://httpbin.org/ip"]; NSURLRequest *request = ...
0
votes
1answer
149 views

iOS client using AFNetworking is sending JSON params with “%” characters to server

My iOS device is sending JSON params to my Rails server and when I output the contents to console. I see that weird characters are in the params hash. The server method then cannot create an object ...
2
votes
2answers
58 views

Parsing JSON response

I am using AFJSONRequestOperation to request a remote API: NSURLRequest *request = [NSURLRequest requestWithURL:url]; AFJSONRequestOperation *operation = [AFJSONRequestOperation ...
0
votes
0answers
131 views

AFJSONRequestOperation with JSON encoded as NSISOLatin1StringEncoding crashing

I want to use AFNetworking more specifically AFJSONRequestOperation in a project to allow for easy async calls. I quickly tried using the sample code from AFNetworking GitHub Page NSURL *url = [NSURL ...
0
votes
1answer
122 views

Passing multiple JSON objects in a single AFNetworking request

In an iPhone app I am building I need to communicate with a 3rd party REST api. I am using AFNetworking for this communication. The api is built so that one can make multiple requests to it within ...
1
vote
1answer
214 views

AFNetworking base64 parameter, characters being escaped by NSJSONSerialization

I am attempting to submit an image to CardShark's API using AFNetworking. NSData *imageData = UIImageJPEGRepresentation(cardImage, 1.0); NSDictionary *parameters = @{@"front" : [imageData ...
0
votes
2answers
228 views

empty UITableView while parsing JSON with AFNetworking

i am using AFNetworking to parse youtube JSON data on a UITableView. For some reason i am getting a empty UITable. I am not sure what i am doing wrong. Please have a look at my code: Here is the ...
1
vote
1answer
396 views

How to print in Console Xcode?

I am using afnetworking to parse JSON data. I want to print the data on the console. How do i print this self.videoMetaData = [JSON valueForKeyPath:@"data.items.video"]; i tried this NSLog(@" ...
1
vote
1answer
275 views

AFNetworking application/json

Using iOS, I'm trying to communicate with a webservice that requests 3 headers followed by JSON POST data. I've taken a look at the following AFNetworking snippet which converts a Dictionary to a ...
0
votes
2answers
286 views

UITable view to detail view JSON parsing with AFNetworking

I managed to parse data from YouTube API on UITable view using AFNetworking but i cant figure out how to use didSelectRowAtIndexPath:(NSIndexPath *)indexPath How do i pass the JSON data to the next ...
0
votes
1answer
204 views

getting empty UITable with AFNetworking JSON Parsing

I am trying to parse JSON data with AFNetworking AFJSONRequestOperation. But i am getting an empty UITable for some reason. I managed to do it without AFNetworking. Could someone please have a look ...
0
votes
1answer
293 views

Using AFNetworking (AFHTTPClient subclass) to send JSON to server => is this an asynchronous operation

So after much research I figured out how to send a NSDictionary from my iOS 6 client to my rails server. I used AFNetworking. Below is the client side code that sends the JSON. However, Im not sure if ...
0
votes
1answer
131 views

Passing JSON object received asynchronously in block to an instance variable - using AFNetworking on iOS6

This code has the JSON but no matter what I do I haven't been able to figure out how to pass this JSON to an instance variable. Each time I set it to a variable and call that variable outside of this ...
0
votes
1answer
222 views

AFNetworking JSON Issue

I keep receiving the following error message: 2013-01-22 01:44:43.091 Section3App2[16625:6703] -[__NSCFArray length]: unrecognized selector sent to instance 0x23a48780 after submitting my AFNetworking ...
2
votes
1answer
574 views

IOS/AFNetworking: enqueue two JSON operations and then compare the returned NSArrays

For my app, I have to connect to two webservices that return JSON. I first rolled my own networking code using GCD, but seeing how AFNetworking handles things, I decided to implement it. Most things ...
0
votes
0answers
173 views

AFJSONRequestOperation returns null response in iOS

I am facing 1 problem while using AFJSONRequestOperation. My API Client is as follows #import <Foundation/Foundation.h> #import "AFHTTPClient.h" #import "AFJSONRequestOperation.h" ...
1
vote
2answers
868 views

iOS Parsing JSON and AFNetworking

I am consuming a web service using the AFNetworking tools like this: NSURLRequest *request = [NSURLRequest requestWithURL:url]; AFJSONRequestOperation *operation = [AFJSONRequestOperation ...
0
votes
1answer
521 views

AFNetworking, upload simple NSData with POST

I created an NSDictionary containing arrays and strings and other client info, using setObject forKey. Everything looks great when I NSLog the data, format is exactly the way its supposed be. I've ...
2
votes
4answers
2k views

AFNetworking and jSON

I am getting following the json response from a web-service api. I want to extract product data from the json. I also want to implement this using AFNetworking. {"products": [ { ...
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 ...
7
votes
3answers
4k 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 ...

1 2