我想用 django 调用一个使用 POST 的 RESTful api。我知道如何进行 GET,但如何进行 POST?
为了得到,我使用requests.get(...)
API调用是:
curl -v -X POST -H "Content-Type: application/json" \
-H "Accept: application/json" \
-X POST \
--user user:password \
https://this.is.an.external.domain \
-d "{\"name\": \"Marcus0.1\",\"start\": 500000,\"end\": 1361640526000}"
更新
所以,我找到了requests.post,但是如何翻译上面的curl命令