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 (
| name | age | message | |
|---|---|---|---|
| |
.gitattributes | Fri Nov 07 11:58:33 -0800 2008 | |
| |
.gitignore | Sat May 16 05:26:11 -0700 2009 | |
| |
ASIFormDataRequest.h | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASIFormDataRequest.m | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASIFormDataRequestTests.h | Sat Nov 08 08:19:12 -0800 2008 | |
| |
ASIFormDataRequestTests.m | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASIHTTPRequest.h | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASIHTTPRequest.m | Mon Nov 17 10:47:18 -0800 2008 | |
| |
ASIHTTPRequestTests.h | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASIHTTPRequestTests.m | Thu Nov 13 03:24:26 -0800 2008 | |
| |
ASINetworkQueue.h | Tue Nov 11 09:31:02 -0800 2008 | |
| |
ASINetworkQueue.m | Wed Nov 12 05:01:01 -0800 2008 | |
| |
ASINetworkQueueTests.h | Sat Nov 08 08:19:12 -0800 2008 | |
| |
ASINetworkQueueTests.m | Thu Nov 13 03:24:26 -0800 2008 | |
| |
AppDelegate.h | Mon Nov 10 09:41:02 -0800 2008 | |
| |
AppDelegate.m | Mon Nov 10 09:41:02 -0800 2008 | |
| |
English.lproj/ | Mon Nov 10 09:41:02 -0800 2008 | |
| |
FirstViewController.h | Fri Nov 07 05:37:09 -0800 2008 | |
| |
FirstViewController.m | Fri Nov 07 05:37:09 -0800 2008 | |
| |
Info.plist | Mon Jul 14 14:44:28 -0700 2008 | |
| |
LICENSE | Mon Jul 14 16:27:37 -0700 2008 | |
| |
Mac-OS-Sample-Application.pch | Sun Mar 22 04:57:17 -0700 2009 | |
| |
Mac-OS-Sample-main.m | Fri Nov 07 05:37:09 -0800 2008 | |
| |
NSHTTPCookieAdditions.h | Fri Nov 07 05:37:09 -0800 2008 | |
| |
NSHTTPCookieAdditions.m | Fri Sep 12 04:46:47 -0700 2008 | |
| |
QueueViewController.h | Sun Mar 22 04:57:17 -0700 2009 | |
| |
QueueViewController.m | Mon Nov 10 09:56:13 -0800 2008 | |
| |
README.textile | Thu Nov 13 03:24:26 -0800 2008 | |
| |
SynchronousViewController.h | Sun Mar 22 04:57:17 -0700 2009 | |
| |
SynchronousViewController.m | Fri Nov 07 05:37:09 -0800 2008 | |
| |
Tests-Info.plist | Fri Aug 01 05:41:19 -0700 2008 | |
| |
asi-http-request.xcodeproj/ | Mon Nov 10 04:08:15 -0800 2008 | |
| |
iPhone Sample Application-Info.plist | Fri Nov 07 05:53:06 -0800 2008 | |
| |
iPhone-Sample-Application.pch | Fri Nov 07 05:37:09 -0800 2008 | |
| |
iPhone-Sample-main.m | Fri Nov 07 05:37:09 -0800 2008 | |
| |
iPhoneSampleAppDelegate.h | Sun Mar 22 04:57:17 -0700 2009 | |
| |
iPhoneSampleAppDelegate.m | Sun Mar 22 04:57:17 -0700 2009 | |
| |
iphone-icon.png | Sun Mar 22 04:57:17 -0700 2009 | |
| |
iphone-xibs/ | Mon Nov 10 09:56:13 -0800 2008 |
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(i)
- 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
- 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 authentication support, credentials are automatically for the duration of a session, and can be stored for later in the Keychain.
- Cookie support
- Based on NSOperation to make queuing requests and background operation easy
- Basic unit tests (more to come!)
Documentation is available here.







