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')
问题解决
本文来自博客园,作者:秋华,转载请注明原文链接:https://www.cnblogs.com/qiu-hua/p/8312973.html