これをobjective-cで複製するにはどうすればよいですか
curl -u rick@email.com:mypassword http://foo.lighthouseapp.com/projects.xml
私は ASIHTTPRequest ライブラリをいじっていますが、それを理解できないようです.
明らかに私のリクエストを次のように送信すると、認証エラーが返されます:
-(void)submit:(id)sender {
NSURL *url = [NSURL URLWithString:@"http://ldn.lighthouseapp.com/projects/63254-londonist-20/tickets.xml"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
NSString *response = [request responseString];
NSLog(@"response:%@",response);
} else {
NSLog(@"error:%@",error);
}
}
これはおそらく非常に単純です。かなり重要なものが欠けているだけです