9951 explained code solutions for 126 technologies


curlUse username and password (HTTP authentication)


curl -u username:password https://example.orgctrl + c
-u

specify basic HTTP auth credentials

username

user name

password

user password

example.org

example URL to request (suppose it's closed under HTTP auth)