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

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

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

link|improve this answer
feedback

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

this helped me find which one I want.

link|improve this answer
feedback

You may try Gogybot library for Monotouch. Its allow you to use very simple commands, like GoToUrl to open page, SetValue to enter text into text boxes and ClickSubmit to authenticate.

link|improve this answer
feedback

See the docs for NSURLRequest

link|improve this answer
You are right. But I was hoping on more information. A tutorial or code example – Jonas Wouters Jan 21 '10 at 9:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.