0
votes
1answer
47 views

How to handle https for iOS client

We know that https is different with http by encrypting the content over http tunnel, simply speaking. For the web browser, since user accept the permission from the popup alter dialog, the browser ...
0
votes
1answer
97 views

Using AFNetworking on iOS, not getting a 302 status code in redirect

I am using AFNetworking on iOS and trying to access webpage that gives me a 302 status code, redirects me and then a 200 when the redirected page loads. However, I am unable to capture this in my iOS ...
0
votes
1answer
162 views

Uploading video with AFNetworking from iPhone app

I am posting a video file to server from my iPhone app. Currently I am using HTTP POST method. I would like to learn about upload using AFNetworking. Hope someone will help me. Here is the sample ...
0
votes
0answers
127 views

AFHTTPRequestOperation and NSURLConnection in the same time (HTTP concurrent connections)?

I use AFHTTPRequestOperation to download files from my WebDAv server with a global queue. This NSOperationQueue only allow one download run. This works fine. In the other hand I use NSURLConnection ...
0
votes
1answer
250 views

AFHTTPClient sets Authorization Header Field like “ Token token='\75845hjhrtje845395748' ” But i just want to be the token inside

i am currently trying to implement authorization with AFNetworking. So i tried to put the access_token inside the HTTP-Authorizationheader. But what arrives at the server is like : Token token = ...
1
vote
0answers
267 views

AFJSONRequestOperation / AFHTTPClient fetching old data

So all I'm trying to do is serve up a .json file somewhere (I've tried both my own personal server, and also on AppFog), then performing a GET request using AFJSONRequestOperation on the iOS platform. ...
1
vote
1answer
405 views

What does registerHTTPOperationClass in AFNetworking do? [closed]

I am trying to understand how the AFNetworking Framework works. But there is little detail i do not understand. I wrote a subclass of AFHTTPclient. Made it a singleton class and added a Initializer ...
2
votes
1answer
264 views

iOS background uploading of images

I have made an application which uploads a bunch of photos to a web server. It does so by repeated html calls, using multiple AFNetworking's AFHTPRequestOperation inside an operation queue. Right now, ...
0
votes
2answers
207 views

Using NSDictionary for HTTP POST requests with identical keys

I have an app which shows the user a number of messages. I need to inform the server that the user has read the messages. To do this, I need to send an HTTP POST request to /api/mark_as_read/ with ...
0
votes
1answer
281 views

Best practices for conversion from ASIHTTPRequest to AFNetworking? [closed]

I'm converting my app from ASIHTTPRequest to AFNetworking. What should I know, in broad strokes, about how these two frameworks are different and how my app should be structured differently? For ...
0
votes
1answer
99 views

POST arbitrary text with AFNetworking

I have seen how you can POST urlencoded forms and json using HttpClient. But how do I POST arbitrary text? My use case is that I already have my JSON string created, so I want to post the string ...
2
votes
1answer
1k views

iOS - Perform synchronous HTTP request with AFNetworking

I'm currently migrating my app from using ASIHTTPRequest to AFNetworking. I know synchronous requests are to be avoided if possible, but in my app I have just 1 place where I use one. In the app ...
0
votes
1answer
121 views

My app fails to connect to the server some times

I've been helplessly observing this problem for a couple months now, and have decided this is my best shot. I'm not sure what the cause of the problem is, but I can list some of the things I'm ...
0
votes
0answers
301 views

Getting HTTP 502 Error using AFNetworking on iOS

I'm trying to use AFNetworking to POST a request to a simple PHP web service that returns JSON-formatted response data. The Web service is functioning properly as I am able to get a response from the ...
1
vote
1answer
303 views

AFNetworking PUT and Delete with Rails

In looking at the AFNetworking documentation, the Put and Delete methods take in a path and a dictionary of parameters. I am using Rails as my backend which expects these two types to take the form ...
5
votes
1answer
281 views

Convert Torrent info_hash from bencoded to URLEncoded data

I am creating torrent scraper in objective-c and I am using AFNetworking for the HTTP requests. I need to send a sha1 hash of the part of the meta info for a tracker request. I have successfully ...
9
votes
3answers
365 views

How to enforce caching in AFNetworking despite cache headers

I want to enforce caching in AFNetworking even when cache header is Cache-Control:·private there are no other cache-relevant headers, I understand it will be a time-based cache and I do not have a ...
0
votes
0answers
272 views

AFNetworking restore HTTP operation after connection lost

I'd like to ask if AFNetworking library offers some kind of support at automatic restore of http operation when they can't be finished because of connection loss. As an example I'd like to enqueue ...
1
vote
2answers
2k views

AFHttpClient post with both parameters and JSON in body

Sorry, but im kinda a newb regarding http post terminology! I have to post to a webservice that cannot be changed: The format is as follows: ...
0
votes
1answer
545 views

Debugging AFNetworking

The following chunk of code is used to submit an image file to a database. It has stopped working: Even though it prints SUCCESS, there are no images visible on the server. Any advice as to how to ...
2
votes
1answer
642 views

Example on using AFNetworking to post XML?

As a followup to this question, I cannot get this to work so I need to take a step back I think. Can someone post some sample code on how to post XML to a rest service WITHOUT using params? Is it ...
1
vote
1answer
2k views

How do I set the data for a “PUT” request with AFNetworking?

I have started to use AFNetworking and it works well when it gets to making simple "GET"-request. However now I am trying to do a "POST"-request. I use the code below to do the "GET" request. When ...
6
votes
3answers
5k views

POST jpeg upload with AFNetworking

I can't for the life of me figure out why this doesn't work when I use AFNetworking. It worked with ASIHTTP. This is all very new to me. But I can't figure out why the files are not being transferred ...
1
vote
1answer
892 views

AFNetworking automatically wraps requests in JSON?

I'm having a small problem with AFNetworking. Im trying to have a simple call to a path with POST parameters (e.g. http://myserver.com/index.php with parameters myParam=1) I've tried using both ...