ファイルをWebDav対応URLに入れようとしています。 コードは次のようになります。python 3 requests.putを使用して401を取得しています
headers = {'Authorization':'Basic', 'username': 'doc_iconx', 'password': 'doc_iconx'}
id = "SOMEID"
pw = "SOMEPW"
try:
url = 'https://mywebsite.com/Dir/'
files = {'upload_file': open(fileName, 'rb')}
r = requests.put(url,auth=HTTPDigestAuth(id,pw), files=files, headers={'User-Agent': 'Mozilla'
})
は、私が戻って取得:
<title>401 Unauthorized</title>
</head><body>
<h1>Unauthorized</h1>
<p>This server could not verify that you
are authorized to access the document
requested. Either you supplied the wrong
credentials (e.g., bad password), or your
browser doesn't understand how to supply
the credentials required.</p>
</body></html>
私はカール
任意のアイデアを使用してPUTを行うことができますので、ID /パスワードが良いです知っていますか?
私が見るところでは、おそらく 'HTTPDigestAuth'の代わりに' HTTPBasicAuth'を使うべきでしょう。あなたはまた 'post'と言いますが、あなたのサンプルでは' put'をやっています。 – sal
私の誤字を指摘してくれてありがとう。私は記述を修正しました.put。 – user3670332
HTTPBasicAuthを使用して試行します。 409クライアントエラー:URLの競合:https://content-qa.homedepot.com/IconX/Report/ – user3670332