使用Postman发送请求,Django提示解码失败

使用Postman发送如下请求

https://127.0.0.1:8000/api/admin/xxxxxxxxx/

报错如下

[19/Nov/2018 14:15:56] code 400, message Bad request version (’\x00"JJ\x13\x01\x13\x02\x13\x03\xc0+\xc0/\xc0,\xc00\xcc\xa9\xcc\xa8\xc0\x13\xc0\x14\x00\x9c\x00\x9d\x00/\x005\x00’)
File “/…/lib/python2.7/site-packages/django/core/servers/basehttp.py”, line 138, in log_message
msg = “[%s] %s\n” % (self.log_date_time_string(), format % args)
UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xfc in position 9: ordinal not in range(128)

0 errors found
November 19, 2018 - 14:20:45
Django version 1.6.11, using settings ‘settings’
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

这个原因是因为我们起的是http服务器,而Postman发送的是Https请求,修改为http后成功

你可能感兴趣的:(python)