我正在关注本教程。 https://developers.google.com/apps-script/articles/appengine
当我尝试遵循第 1-6 节时
“在浏览器中测试这个 URL:http://localhost:8080/rpc?action=Echo¶ms={"example":"blah"}&key=mySecretKey。" (我在“http://”和“localhost”之间添加了一个空格以避免堆栈溢出流的自动错误检查。)
由于这个错误,我无法跟随。
<type 'exceptions.SyntaxError'>: 'ascii' codec can't decode byte 0xc2 in position 141: ordinal not in range(128) please see http://www.python.org/peps/pep-0263.html for details (backend.py)
args = ("'ascii' codec can't decode byte 0xc2 in position...n.org/peps/pep-0263.html for details (backend.py)",)
filename = None
lineno = None
message = "'ascii' codec can't decode byte 0xc2 in position...n.org/peps/pep-0263.html for details (backend.py)"
msg = "'ascii' codec can't decode byte 0xc2 in position...n.org/peps/pep-0263.html for details (backend.py)"
offset = None
print_file_and_line = None
text = None
在本教程之前,我阅读了 Google App Engine 的“Hello World”教程。它工作得很好。
我应该怎么做才能消除错误?
PS 在教程中我发现一个错字“第 1 节:使用脚本编辑器”应该是“第 1 节:创建和部署 App Engine 服务”。我认为。