API请求在浏览器中起作用,但是在Postman或Python请求模块中不起作用 我正在尝试请求此API:https://iso19139echnap.geocat.geocat.live/geonetwork/srv/api/0.1/groups/11864 如果我以直接URL输入,它在浏览器中工作,但它在Python请求Modu中不起作用...

问题描述 投票:0回答:1

import requests payload = { 'username': 'corey', 'password': 'testing' } r = requests.get('https://iso19139echnap.geocat.live/geonetwork/srv/api/0.1/groups/11864') print(r) -------------------------------------------------------- returns <Response [400]>

import requests url = "https://iso19139echnap.geocat.live/geonetwork/srv/api/0.1/groups/11864" payload = {} headers = { 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'Accept-Encoding': 'gzip, deflate, br', 'Accept-Language': 'en-IE,en-GB;q=0.9,en-US;q=0.8,en;q=0.7', } response = requests.request("GET", url, headers=headers, data=payload) print(response.text)

您必须添加接受编码标题
postman也是如此,而且效果很好
python json python-requests postman
1个回答
0
投票

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.