4
我實現JIRA API調用蟒蛇請求: Add watcher to a JIRA issue.如何將字符串傳遞到電話後,使用
這需要String
參數,而不是JSON
。我正在使用python requests。
requests.post(url, headers=headers, json=data)
什麼應該是我的數據的值,如果JIRA文件說,我需要通過只是字符串,但requests.post
方法只接受JSON?
將'json = data'更改爲'data = data'? –
Isnt數據也是一個關鍵,值配對輸入類型ref:http://docs.python-requests.org/en/master/user/quickstart/#make-a-request? –