0

一部のドキュメントをプログラムでダウンロードする際に問題に直面しています。

たとえば、このリンク

https://www-950.ibm.com/events/wwe/grp/grp019.nsf/vLookupPDFs/Introduction_to_Storwize_V7000_Unified_T3/$file/Introduction_to_Storwize_V7000_Unified_T3.pdf

ブラウザからダウンロードできますが、wgetから取得しようとすると機能しません。

私が試してみました

wget https://www-950.ibm.com/events/wwe/grp/grp004.nsf/vLookupPDFs/3-Mobile%20Platform%20--%20Truty%20--%20March%208%202012/\$file/3-Mobile%20Platform%20--%20Truty%20--%20March%208%202012.pdf

それは私にこの出力を与えました

--2012-04-18 17:09:42--  
https://www-950.ibm.com/events/wwe/grp/grp004.nsf/vLookupPDFs/3-Mobile%20Platform%20--%20Truty%20--%20March%208%202012/$file/3-Mobile%20Platform%20--%20Truty%20--%20March%208%202012.pdf

Resolving www-950.ibm.com... 216.208.176.98
Connecting to www-950.ibm.com|216.208.176.98|:443... connected.
Unable to establish SSL connection.

誰でもこの問題を解決するのを手伝ってくれますか? 前もって感謝します。

4

1 に答える 1

1

--no-check-certificate を元の wget コマンドに追加します。

さらに、プロキシを使用していることを確認する必要があります。

Linux の場合:

export http_proxy=http://myproxyserver.com:8080

Windows の場合:

set http_proxy=http://myproxyserver.com:8080

Windows では、これは https リクエストであるため、機能させるには https_proxy も設定する必要があることもわかりました。そう

set https_proxy=http://myproxyserver.com:8080

明らかに、特定の状況に合わせてプロキシ設定を変更してください。

于 2012-04-18T14:15:55.217 に答える