0
bugzilla rest APIからバグを取得しようとしています。私のコードは以下の通りです。私はこれをしようとするとPythonを使用してbugzillaからバグを取得する
import requests
import json
URL = "https://bugzilla.mozilla.org/rest/"
API_KEY = "key"
headers = {"Content-type": "application/json"}
params = {
"username": "email",
"password": "password",
"apikey": API_KEY,
}
# r = requests.get(URL + 'login/', headers = headers, params = params)
# print(r)
resp = requests.post(URL + "bug/" , headers = headers, params = params)
if resp.status_code != 200:
print('error: ' + str(resp.status_code))
else:
print('Success')
print(resp)
私は正しい道に私を指示してくださいレスポンス404
誰かを取得します。