web-dev-qa-db-ja.com

リクエストライブラリでHTTP DELETEリクエストを行う方法

Toggl.com APIと対話するために requests パッケージを使用しています。

GETとPOSTリクエストを実行できます:

    payload = {'some':'data'}
    headers = {'content-type': 'application/json'}
    url = "https://www.toggl.com/api/v6/" + data_description + ".json"
    response = requests.post(url, data=json.dumps(payload), headers=headers,auth=HTTPBasicAuth(toggl_token, 'api_token'))

しかし、DELETEリクエストを実行する方法を見つけることができないようです。これは可能ですか?

25
jorrebor

requests.postの代わりに requests.delete を使用します

payload = {'some':'data'}
headers = {'content-type': 'application/json'}
url = "https://www.toggl.com/api/v6/" + data_description + ".json"

response = requests.delete(
    url, 
    data=json.dumps(payload), 
    headers=headers,
    auth=HTTPBasicAuth(toggl_token, 'api_token')
)
54
Elvis D'Souza
import requests
url = 'url.example.ap'
headers = {
    'content-type': "multipart/form-data; boundary=---- ",
    'X-Auth-Token': ""anytoken"",
    'Cache-Control': "no-cache"
    }
r = requests.delete(url, headers=headers)
n = os.write(sys.stdout.fileno(), r.content)
print r.content == r.text
0
Nauman Ali