baz / asi-http-request forked from pokeb/asi-http-request
- Source
- Commits
- Network (41)
- Downloads (34)
- Wiki (1)
- Graphs
-
Branch:
master
commit ae4d6b348af28f220fd35ca8a8675bc252158815
tree d095a4451a79bd0a4138c309049f019fbbb3ad17
parent 44f733c04d95e3e716f06bb4f07a17db426c30b7 parent d310696cb9b5116b3b888e94dbd4cc94e8bd32af
tree d095a4451a79bd0a4138c309049f019fbbb3ad17
parent 44f733c04d95e3e716f06bb4f07a17db426c30b7 parent d310696cb9b5116b3b888e94dbd4cc94e8bd32af
| name | age | message | |
|---|---|---|---|
| |
.gitattributes | Fri Nov 07 11:58:33 -0800 2008 | |
| |
.gitignore | Sat May 16 05:26:11 -0700 2009 | |
| |
Classes/ | ||
| |
External/ | Wed Aug 05 09:31:04 -0700 2009 | |
| |
Frameworks/ | Sun Jul 26 04:50:57 -0700 2009 | |
| |
LICENSE | Sat Oct 03 06:26:35 -0700 2009 | |
| |
Mac Sample/ | Sat Sep 12 09:36:02 -0700 2009 | |
| |
Mac.xcodeproj/ | Sat Sep 12 05:16:53 -0700 2009 | |
| |
README.textile | Sun Aug 02 10:00:52 -0700 2009 | |
| |
clang.sh | Sun Mar 22 08:53:26 -0700 2009 | |
| |
iPhone Sample/ | Mon Aug 24 04:48:30 -0700 2009 | |
| |
iPhone.xcodeproj/ | Mon Sep 14 05:08:36 -0700 2009 |
README.textile
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 written in Objective-C and works in both Mac OS X and iPhone applications.
It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data.
It provides:
- A straightforward interface for submitting data to and fetching data from webservers
- Download data to memory or directly to a file on disk
- Submit files on local drives as part of POST data, compatible with the HTML file input mechanism
- Stream request bodies directly from disk to the server, to conserve memory
- Resume for partial downloads
- Easy access to request and response HTTP headers
- Progress delegates (NSProgressIndicators and UIProgressViews) to show information about download AND upload progress
- Auto-magic management of upload and download progress indicators for operation queues
- Basic, Digest + NTLM authentication support, credentials are automatically re-used for the duration of a session, and can be stored for later in the Keychain.
- Cookie support
- GZIP support for response data AND request bodies
- [NEW] Experimental support for Amazon S3
- [NEW] Supports manual and autodetected proxies, authenticating proxies, and PAC file autoconfiguration
- Based on NSOperation to make queuing requests and background operation easy
- Comes with a broad range of unit tests
Documentation is available here.

