当前位置: 首页 > 工具软件 > put2win > 使用案例 >

发送HTTP请求时post或put方法报错返回415状态码的解决方法

呼延渝
2023-12-01

在发送HTTP请求时,用post或者put方法时可能会出现415的错误,解决方法:

只需要在请求头中加入如下字段即可:

"Content-Type":"application/json"

完整的请求头如下:

headers = {
            "Content-Type":
            "application/json",
            "Accept":
            "application/json, text/javascript, */*; q=0.01",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36"
        }

 

 类似资料: