Open callmezhan opened 4 hours ago
求教
url = “https://lms.ouchn.cn/statistics/api/learning-activity” print(requests.request(“POST”, url, headers=headers, data=json.dumps(local_payload))) print(“发送完毕”)
运行出来 ,报<Response [204]>,是啥意思呢?
204代表服务器已收到请求,但是没有返回数据。返回这个说明正常
url = "https://lms.ouchn.cn/statistics/api/learning-activity" print(requests.request("POST", url, headers=headers, data=json.dumps(local_payload))) print("发送完毕")
运行出来 ,报<Response [204]>,是啥意思呢?