1) Aşağıdaki komutu girme
curl -k email@mail.com:password https://www.example.com
Aşağıdaki hatayı döndürür
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>301 Moved</TITLE></HEAD><BODY>
<H1>301 Moved</H1>
The document has moved
<A HREF="http://mail.google.com/mail/">here</A>.
</BODY></HTML>
badauth
////////////////////////////////////
2) cacert.crt dosyasını buradan indirdikten sonra
http://www.cacert.org/index.php?id=3
Sonra "cacert.crt" dosyasını "cacert.pem" olarak yeniden adlandırdı
Sonra denedim
curl --cacert /path/to/cacert.pem email@mail.com:password https://www.example.com
Ama aynı hatayı al.
////////////////////////////////////
3) Sonra çalışıyor
curl https://www.example.com
Bu hatayı alıyorum
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option
////////////////////////////////////
4) Bu yüzden -k ile denedim
curl -k https://www.example.com
Ama elbette hatayı al
Badauth
////////////////////////////////////
Sanırım sertifika dosyasında yanlış bir şey yapıyorum ama bir sertifika dosyasını nereden alacağımı ya da elime geçtiğinde ne yapacağımı bilmiyorum.
Tabii ki bir tarayıcı kullanarak giriş yapmakta bir sorunum yok, ancak işlemi komut satırına göre otomatikleştirmek istiyorum, böylece bunu Android tabletimde WiFi üzerinden çalkalayıcı ile yapabilirim.
TIA