This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 4dc57666bd221b53510945c332fe0bd46bf55beb
tree 43101d6bc48550d8f44d19cdc1c9201b034e231b
parent e81d5707a04634e2436f83897ed2208977112133
tree 43101d6bc48550d8f44d19cdc1c9201b034e231b
parent e81d5707a04634e2436f83897ed2208977112133
| name | age | message | |
|---|---|---|---|
| |
.gitattributes | Fri Nov 07 11:58:33 -0800 2008 | |
| |
.gitignore | Sat May 16 05:26:11 -0700 2009 | |
| |
Classes/ | ||
| |
Frameworks/ | Sat May 16 07:35:06 -0700 2009 | |
| |
LICENSE | Mon Jul 14 16:27:37 -0700 2008 | |
| |
Mac Sample/ | ||
| |
Mac.xcodeproj/ | ||
| |
README.textile | ||
| |
clang.sh | Sun Mar 22 08:53:26 -0700 2009 | |
| |
iPhone Sample/ | Sat Apr 04 16:50:35 -0700 2009 | |
| |
iPhone.xcodeproj/ |
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
- Based on NSOperation to make queuing requests and background operation easy
- Comes with a broad range of unit tests
Documentation is available here.








