web-dev-qa-db-ja.com

指定する方法python HTTPボディを要求しますか?

私はいくつかの古いpythonリクエストモジュール付きのコードを書き直そうとしています。目的は添付ファイルをアップロードすることです。メールサーバーには次の仕様が必要です。

https://api.elasticemail.com/attachments/upload?username=yourusername&api_key=yourapikey&file=yourfilename

動作する古いコード:

h = httplib2.Http()        
        resp, content = h.request('https://api.elasticemail.com/attachments/upload?username=omer&api_key=b01ad0ce&file=tmp.txt', 
        "PUT", body=file(filepath).read(), 
        headers={'content-type':'text/plain'} )

リクエストで身体の部分を使用する方法が見つかりませんでした。

私は次のことができました:

 response = requests.put('https://api.elasticemail.com/attachments/upload',
                    data={"file":filepath},                         
                     auth=('omer', 'b01ad0ce')                  
                     )

しかし、ファイルの内容で身体の部分を指定する方法がわかりません。

ご協力いただきありがとうございます。オメル。

27
omer bach

docs からの引用

data–(オプション)Requestの本文で送信する辞書またはバイト。

したがって、これはshould work(テストされていません):

 filepath = 'yourfilename.txt'
 with open(filepath) as fh:
     mydata = fh.read()
     response = requests.put('https://api.elasticemail.com/attachments/upload',
                data=mydata,                         
                auth=('omer', 'b01ad0ce'),
                headers={'content-type':'text/plain'},
                params={'file': filepath}
                 )
54
raben

Pythonとそれがリクエストモジュールです。これを使用して、これを機能させました。これにより、ページ入力値としてファイルコンテンツを提供できます。以下のコードを参照してください。

import json
import requests

url = 'https://Client.atlassian.net/wiki/rest/api/content/87440'
headers = {'Content-Type': "application/json", 'Accept': "application/json"}
f = open("file.html", "r")
html = f.read()

data={}
data['id'] = "87440"
data['type']="page"
data['title']="Data Page"
data['space']={"key":"AB"}
data['body'] = {"storage":{"representation":"storage"}}
data['version']={"number":4}

print(data)

data['body']['storage']['value'] = html

print(data)

res = requests.put(url, json=data, headers=headers, auth=('Username', 'Password'))

print(res.status_code)
print(res.raise_for_status())

疑問がある場合はお気軽にお問い合わせください。


[〜#〜] nb [〜#〜]:この場合、リクエストの本文はjson kwargに渡されます。

3
Ashfaq