报错信息
原代码:
async with session.post(url, headers=headers, data=payload) as response:
print(f"{id} 签到结果:", await response.text())
原因: 在使用 aiohttp 进行 HTTPS 请求时,如果没有设置 正确的SSL 证书验证,就可能会出现以上问题
解决办法
忽略 SSL 证书验证
async with session.post(url, headers=headers, data=payload, ssl=False) as response:
print(f"{id} 签到结果:", await response.text())
标签:aiohttp,python,text,payload,headers,session,报错,response
From: https://blog.csdn.net/May_JL/article/details/140502592