Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用包含ß的密码的 HttpBasicAuth 时遇到了问题。在 Windows 机器上。现在我将无法更改我的公司密码规则,因此我想在不支持密码时显示某种警告。或者有没有解决 HttpBasicAuth 与德语变音符号斗争的方法?
所以我找到了解决方案。我使用的是password = getpass.getpass()读取密码。添加.encode("utf-8")解决了我的问题。
password = getpass.getpass()
.encode("utf-8")
因此,将密码读入:
password = getpass.getpass().encode("utf-8")