Reputation: 611
I have a password protect web folder on my site, I am fetching that folder on another domain using Curl
, what I want is: when I try to open the URL it should ask me the user name and password, instead of asking it display the "Authorization Required".
Example:
If I try to access the "a" url it ask me for the user name password. Fine. but it doesn't ask me for the user name and password on "b" (using curl here).
Any Idea?
In Short: I want to make Curl
ask for the User/Password prompt.
Regards
I am not sure, if it is possible or not? but if it's possible so please let me know how, otherwise I will close this as "Invalid"
Upvotes: 31
Views: 59243
Reputation: 1607
Examples:
--user
curl -v --user myName:mySecret http://example.com/foo/bar
-u
curl -v -u myName:mySecret http://example.com/foo/bar
(example for Minh Nguyen see https://stackoverflow.com/a/26826658/3411766)
curl -v -su 'myName' http://example.com/foo/bar
asks for the pw of user 'myName'.
Upvotes: 7
Reputation: 19
-H 'Authorization: Basic user:pass' user:pass must be encoded in base64
Upvotes: 1
Reputation: 749
Try the following like :
curl -su 'user' <url>
It should prompt password
for the user
Upvotes: 74
Reputation: 7620
for .htaccess style password protection, You can code the userid password as in:
curl -u userid:password http://.......
Upvotes: 1
Reputation: 15616
you can use cookies there I think. The steps would be:
Upvotes: -1