Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a Cocoa class that will enable me to load a web page (html source) from a given URL. To make things a bit more complicated I need to be able to set user name and password for this contention since the access to web page is restricted.

share|improve this question

3 Answers

up vote 3 down vote accepted

If it's basic authentication you can just put the username and password in the URL like so:

NSURLRequest *request =
[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://username:password@server.com"]];

[NSURLConnection sendSynchronousRequest:request returningResponse:NULL error:NULL];
share|improve this answer

NSURLConnection supports the behavior you describe. See the section on handling authentication challenges.

share|improve this answer

I tend to use Ben Copsey's ASIHTTPRequest library, which works fine both on OSX and the iPhone. I know most of the stuff it does can be done with NSURLReqest, but this one just makes life so much easier.

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setUsername:@"username"];
[request setPassword:@"password"];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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