Name Last Update
English.lproj Loading commit data...
asi-http-request.xcodeproj Loading commit data...
.gitignore Loading commit data...
ASIHTTPRequest.h Loading commit data...
ASIHTTPRequest.m Loading commit data...
ASIHTTPRequestTests.h Loading commit data...
ASIHTTPRequestTests.m Loading commit data...
ASIProgressDelegate.h Loading commit data...
AppDelegate.h Loading commit data...
AppDelegate.m Loading commit data...
Info.plist Loading commit data...
LICENSE Loading commit data...
README Loading commit data...
Tests-Info.plist Loading commit data...
asi-http-request_Prefix.pch Loading commit data...
main.m Loading commit data...
[NEW!] Documentation is available at: http://allseeing-i.com/asi-http-request

ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier.

It is suitable for when you want to submit data to an existing web form, or don't want to mess around with SOAP or XML-RPC.

It provides:

* A straightforward interface for submitting data to (GET & POST) and fetching data from webservers

* The ability to submit files on local drives as part of POST data, compatible with the HTML file input mechanism

* Easy access to request and response HTTP headers

* Ability for setting up progress delegates (e.g. NSProgressIndicators) to show information about download AND upload progress

* Basic authentication (username and password) support, credentials are automatically for the duration of a session, and can be stored for later in the Keychain.

* Based on NSOperation to make queuing requests and background operation easy

* Basic unit tests (more to come!)

ASIHTTPRequest comes as part of a simple application that demonstrates many of the features above, just look at AppDelegate.m for good pointers on basic usage, or read the comments in ASIHTTPRequest.h for more detail.

ASIHTTPRequest is partly based on code from Apple's ImageClient code samples, so if it doesn't meet your needs, take a look at their CFNetwork examples for more.

ASIHTTPRequest is my first open source Objective-C code. I hope to expand the class and example application further (unit tests, maybe even iphone examples...) in the coming months. If you find it helpful, please do get in touch!

To do:
NTLM Authentication?
Digest Authentication?
PUT / DELETE /GET?