0

我有以下代码,其中将 POST 请求发送到带有 JSON 请求正文的 http 服务器。调试打印出 2 个请求,表明请求正文作为单独的请求发送。

import http.client
import json


if __name__ == "__main__":
    connexion = http.client.HTTPConnection('localhost',27015)
    headers = {'Content-type': 'application/json','Accept': 'application/json'}

    dataSent = {'coup': 'e2e4'}
    json_dataSent = json.dumps(dataSent)

    connexion.set_debuglevel(1)
    connexion.request('POST','/faireCoup',json_dataSent,headers)

    reponse = connexion.getresponse()

    print(reponse.read().decode())

    connexion.close()

在此处输入图像描述

4

0 回答 0