0
votes
1answer
44 views

AFNetworking — get redirect URL

Use a AFNetworking against a REST API. POST to resources/ Server responds with 303 -> see resources/3928.json The the server is giving information here: the id 3928 has been assigned to your ...
0
votes
0answers
92 views

iOS authentication to RESTful API gives me 401 status with AFNetworking

When I make REST API call authentication using AFNetworking, I got error like Error Domain=AFNetworkingErrorDomain Code=-1011 "Expected status code in (200-299), got 401" UserInfo=0x7533ac0 ...
0
votes
1answer
76 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 ...
0
votes
2answers
601 views

AFNetworking Error: “Expected status code in (200-299), got 404”

My code: NSURL *url = [NSURL URLWithString:@"http:testurl.com"]; AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url]; NSString *email = @"test@test.com"; NSString *password = ...
3
votes
3answers
354 views

Some requests time out with no clear reason

I encountered a bug I can't understand and for now it happens only on a specific device. It happens on an iPhone 5 with iOS 6 but unfortunately I don't have access to another one to check if it's ...
0
votes
1answer
30 views

I am getting bad request from the server when making DELETE request

I am using AFNetworking shared client in order to make request to the REST server. My code for delete is: NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; [[ApiClient sharedClient] ...
0
votes
3answers
119 views

What is the best way to communicate via RESTful-Http with an web-service from an iPhone App

My iphone App should be able to communicate with a Webserver via RESTful HTTP. So now i want to figure out what is the best approach of doing this. Is there a lightweight framework out there which ...
3
votes
1answer
350 views

Authentication login issue RESTful iOS

Hey Folks i have a problem with authentication for the login credentials of my app. I currently have a rails web service running from my localhost, that features a main login screen for a admin user ...
3
votes
1answer
650 views

AFNetworking JSON request to WCF REST service

I'm using AFNetworking for my REST service (WCF). Here is code: NSDictionary *userName = [NSDictionary dictionaryWithObject:@"user" forKey:@"UserNameOrEmail"]; NSDictionary *pass = [NSDictionary ...
0
votes
1answer
257 views

AFNetworking Data Fetching Method Not Called

I am creating an app where in the first view, the user is given the option to log-in or register. In the register view is a UITableViewCell that, when clicked, takes the user to a view containing a ...
3
votes
2answers
2k views

POST and PUT request AFNetworking

I'm trying to do a call to a server. The GET call is working great and returns the correct json, but when I try to do a PUT or a POST, the server returns an error. I set the server to receive the ...
0
votes
0answers
655 views

Invalid JSON using AFHTTPClient to access REST API

I am accessing a RESTful WEB API (C#). Using fiddler I can see the response is valid JSON: [{ "Id": "1", "Name": "MVC4 Getting Started", "Price": "240.45" }, { "Id": "2", "Name": ...
1
vote
0answers
439 views

AFNetworking - Making an XML POST request to REST service? How to form NSDictionary parameters?

I am trying to create a POST request to a REST API to post a new time entry. The required XML structure for the post request is as follows: <time-entry> ...
1
vote
1answer
589 views

why can't my iphone app connect to my server?

i have a weird problem. so i've been working on an iphone app where a user can login, and upon logging in, the app would authorize the user by making an http GET request to the server. if the username ...
4
votes
2answers
12k views

AFNetworking POST to REST webservice

Brief backstory, our previous developer used ASIHTTPRequest to make POST requests and retrieve data from our webservice. For reasons unknown this portion of our app stopped working. Seemed like good ...
4
votes
2answers
3k views

Resetting basic authentication credentials with AFNetworking

I am writing a REST client (with AFNetworking) 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 - ...