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.
如何使用 python 进行 Windows 身份验证。有什么工具可以调试吗?我尝试使用 request_ntlm,但没有帮助。即使我无法从响应中获取 www-authenticate 标头。
我解决了这个问题,因为这是客户端证书的问题。由于我的服务器将基于客户端证书和私钥进行身份验证。我们需要将 python Environ 变量 REQUEST_CA_BUNDLE 设置为 .pem 证书,并将客户端证书和密钥与请求一起传递,它可以工作。如果证书已正确验证,则将看到来自服务器的 www-authenticate 标头。