请求URL出现这种带问号+参数的形式时,请求提交为表单格式
相应的Python request.post方法中应使用data参数作为请求数据类型
"""
response = session.post(url=url, headers=headers, data=data.encode('utf-8'))
"""
还有要注意的是header中的Content-Type类型应该指定为:application/x-www-form-urlencoded
"""
headers={
"Content-Type":"application/x-www-form-urlencoded",
}
"""
网友评论