Herkesin kafa karışıklığından kaçınmasına yardımcı olmak için, soruyu iki kısımda yeniden biçimlendireceğim.
Birincisi: "BASIC yetkilendirmesini kullanarak tarayıcı ile nasıl kimlik doğrulamalı HTTP isteği yapabilir?" .
Tarayıcıda, önce istemi bekleyerek veya şu biçimi izlerseniz URL'yi düzenleyerek http temel kimlik doğrulaması yapabilirsiniz: http://myusername:mypassword@somesite.com
Not: Bir komut satırı ve curl yüklüyse, soruda belirtilen curl komutu gayet iyi. ;)
Referanslar:
Ayrıca CURL kılavuz sayfasına göre 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.
İkinci ve gerçek soru "Ancak, somesite.com'da, bir yetkilendirme istemi almıyorum, sadece yetkilendirilmediğimi söyleyen bir sayfa var. başka yapmam gerekir mi? "
Curl belgeleri, -u
seçeneğin birçok kimlik doğrulama yöntemini desteklediğini, Basic'in varsayılan olduğunu söylüyor .