我正在运行下面的代码来尝试获取应该是 url 的纯文本响应。运行后我得到
<urllib3.response.HTTPResponse object at 0x102659210>
<urllib3.response.HTTPResponse object at 0x1026598d0>
<urllib3.response.HTTPResponse object at 0x1026595d0>
有没有办法将这些响应转换为实际的纯文本 url?此外,在 Postman 中检查数据时,如果可能的话,我更愿意返回 Raw body。
for data in my_folder["data"]:
contact = data["contact"]
get_endpoint = base_url + str(contact)
endpoint = requests.get(get_endpoint,headers=headers)
print(endpoint.raw)