当前位置:   article > 正文

python接口调用失败_python3爬虫问题,API调用出现282004等错误

python中调用接口少了content-length就调用不通

下面是一些错误:

"error_code": 282004,"error_msg": "invalid parameter(s)",a bytes-like object is required, not 'str'POST data should be bytes or an iterable of bytesContent-Length should be specified for iterable data of type {'text': '昆明会下雨吗?'}

等一系列都是因为数据格式的原因

1、Content-Length should be specified for iterable data of type

这里是因为request 参数不能dict或jsonpost_data = {"text":"昆明会下雨吗?"}

data=json.dumps(post_data).encode('GBK')

request = urllib.request.Request(url, data)

#JSON:在发起请求时,需要发送一个已经过编译的JSON数据:

data=json.dumps(post_data).encode('GBK')

2、a bytes-like object is required, not 'str'

POST data should be bytes or an iterable of bytes,这里是要提醒

注意区分bytes和str,需要格式转换。#bytes ⇒ str:str(b, encoding='****')response = urllib.request.urlopen(request)

content = response.read() # content是一个utf-8格式的

#bytes ⇒ str:str(b, encoding='****')

content_str = str(content, encoding="gbk")

3、参数错误,对照API接口查看body

"error_code": 282004, "error_msg": "invalid parameter(s)",# 用下一行是对的post_data ="{\"text\":\"昆明会下雨吗?\"}"

post_data = {"text":"昆明会下雨吗?"}

data=json.dumps(post_data).encode('GBK')

request = urllib.request.Request(url, data)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/441752
推荐阅读
相关标签
  

闽ICP备14008679号