views:

645

answers:

3

I'm developing an iPhone application where I wish to authenticate (login form) on a site and retrieve some information by doing some screen scraping. Is there an API available to do this or documentation how I could do this?

thanks

A: 

See the docs for NSURLRequest

NSResponder
You are right. But I was hoping on more information. A tutorial or code example
Jonas Wouters
+3  A: 

ASIHTTPRequest is a fantastic alternative to NSURLRequest, and the linked page has some great code examples to get you started on the right track.

Kirk van Gorkom
+1  A: 

http://fourdman.blogspot.com/2009/12/asihttprequest-vs-nsurlconnection.html

this helped me find which one I want.

josh reed