เพื่อช่วยให้ทุกคนหลีกเลี่ยงความสับสนฉันจะปฏิรูปคำถามเป็นสองส่วน
ก่อน: "จะทำการร้องขอ HTTP ที่ผ่านการรับรองความถูกต้องกับเบราว์เซอร์ได้อย่างไรโดยใช้การรับรองความถูกต้องเบื้องต้น" .
ในเบราว์เซอร์คุณสามารถทำ http auth พื้นฐานก่อนโดยรอให้พรอมต์มาหรือแก้ไข URL ถ้าคุณทำตามรูปแบบนี้: http://myusername:mypassword@somesite.com
หมายเหตุ: คำสั่ง curl ที่กล่าวถึงในคำถามนั้นสมบูรณ์แบบหากคุณมีบรรทัดคำสั่งและติดตั้ง curl ;)
อ้างอิง:
นอกจากนี้ตามหน้าคู่มือ CURL https://curl.haxx.se/docs/manual.html
HTTP
Curl also supports user and password in HTTP URLs, thus you can pick a file
like:
curl http://name:passwd@machine.domain/full/path/to/file
or specify user and password separately like in
curl -u name:passwd http://machine.domain/full/path/to/file
HTTP offers many different methods of authentication and curl supports
several: Basic, Digest, NTLM and Negotiate (SPNEGO). Without telling which
method to use, curl defaults to Basic. You can also ask curl to pick the
most secure ones out of the ones that the server accepts for the given URL,
by using --anyauth.
NOTE! According to the URL specification, HTTP URLs can not contain a user
and password, so that style will not work when using curl via a proxy, even
though curl allows it at other times. When using a proxy, you _must_ use
the -u style for user and password.
คำถามที่สองและแท้จริงคือ"อย่างไรก็ตามบน somesite.com ฉันไม่ได้รับพรอมต์อนุญาตเลยเพียงแค่หน้าเว็บที่ระบุว่าฉันไม่ได้รับอนุญาต Somesite ไม่ใช้เวิร์กโฟลว์การตรวจสอบขั้นต้นอย่างถูกต้องหรือมีบางอย่าง ฉันต้องทำยังไงดี? "
เอกสาร curl บอกว่า-u
ตัวเลือกรองรับวิธีการตรวจสอบหลายวิธีพื้นฐานเป็นค่าเริ่มต้น