python3.x执行post请求时报错“POST data should be bytes or an iterable of bytes...”的解决方法

可用链接:http://blog.csdn.net/dushu990/article/details/51767189

使用python3.5.1执行post请求时,一直报错"POST data should be bytes or an iterable of bytes. It cannot be of type str.",仔细对照教程后也未发现编写方法没有问题。

最后通过交流发现需要加在urlencode语句后加encode(encoding='UTF8')

eg:

params = urllib.parse.urlencode({'userid':'381fccbd776c4deb'}).encode(encoding='UTF8')

问题解决

posted @ 2018-01-18 20:50  秋华  阅读(231)  评论(0编辑  收藏  举报