代码如下import requests url = "http://bzdermyyct2.cqsqy.com/#/login" """?userName=system_manager&password=qysubsys_bz_ct1_2376&type=2""" data = {"userName":"system_manager'","password":"qysubsys_bz_ct1_2376","type":2} headers = {"Content-Type": "application/json;charset=utf-8", "Accept": "application/json", "Cookie": "PHPSESSID=lv1pdl33mrhipgb2tvejiontmj"} r = requests.post(url=url, json=data, headers=headers) print(r.text) print(r.status_code)
时间: 2023-07-22 17:10:52 浏览: 99
LABVIEW程序实例-DS写属性数据.zip
根据你提供的代码,你使用了 `requests` 库发送了一个 POST 请求到 http://bzdermyyct2.cqsqy.com/#/login。然而,从你的代码中看不出具体的问题。报错信息中提到的是 405 Not Allowed,这通常是由于请求方法不正确导致的。
你可以尝试将 `requests.post` 改为 `requests.get`,或者根据接口要求,选择正确的请求方法。另外,还要确认一下你的请求 URL 是否正确,以及服务器是否允许你发送该请求。
如果问题仍然存在,建议提供更多的错误信息或调试信息,以便我能够更准确地帮助你解决问题。
阅读全文