A (licensed BSD) shell to facilitate the use of CFNetwork. Typically, it is used to process HTTP requests.
The documentation explains how to use it. Since ASIHTTPRequest is not an Apple product, Apple does not provide files for this.
Here's what the ASIHTTPRequest documentation page says.
ASIHTTPRequest is an easy-to-use CFNetwork API wrapper that simplifies some of the more tedious aspects of interacting with web servers. It is written in Objective-C and works on both Mac OS X and iPhone.
It is suitable for making basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included subclass ASIFormDataRequest simplifies sending data and POST files using multipart / form-data.
In addition, the ASIHTTPRequest page says Please note that I am no longer working on this library - you may want to use something else for new projects. :)
RestKit may be an alternative.
user454322
source share