Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to access a url which requires a username/password basic auth stuff. I'd like to try accessing it with curl. Right now I'm doing something like:

curl http://api.somesite.com/test/blah?something=123

so I just get some error back now, I guess I need to specify a username and password along with the above command, how can I do that?

Thanks

share|improve this question

2 Answers

Try:

curl -u username:password http://example.com

share|improve this answer
This is the solution iam also looking for.... works from command prompt well. – dskanth Feb 10 '11 at 6:27
Note that if you do this from the console the password will remain in the history which is ... wrong. You should specify just -u user and CURL will ask you for the password in no-echo mode. – Cristian Vrabie Apr 19 at 22:44

Or the same thing but different syntax

curl http://username:password@api.somesite.com/test/blah?something=123
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.