LoginSignup
4
4

More than 5 years have passed since last update.

Pythonでダイジェスト認証

Posted at

ベーシック認証ではなくダイジェスト認証。ちょっとハマったのでメモ。

post.py
# -*- coding: UTF-8 -*-

import json
import requests
from requests.auth import HTTPDigestAuth

url = 'https://xxx.jp/xxx/xxx.php'
username = 'user'
password = 'pass'

headers = {}
headers["Content-Type"]= 'application/json'

payload = {'param':'1234'}

r = requests.post(url, auth=HTTPDigestAuth(username,password), headers=headers, data=json.dumps(payload))

print(r)      # 200
print(r.text) # result
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4