读取HTTP认证中的Realm属性
如何读取请求 HTTP 基本身份验证的服务器在 WWW-Authenticate 标头中发送的 Realm 属性?
How can I read the Realm property sent in the WWW-Authenticate header by a server requesting HTTP Basic authentication?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不太确定反对者对这个问题的真正问题是什么。
以下是获取包含基本身份验证领域的 WWW-Authenticate 标头的粗略代码。从标头中提取实际领域值作为练习,但应该非常简单(例如使用正则表达式)。
Not really sure what the issue the down-voters have with this question really is.
Here's the rough code to get the WWW-Authenticate header that contains the Basic authentication realm. Extracting the actual realm value from the header is left as an exercise, but should be quite straightforward (e.g. using regular expression).
我假设您想要创建带有基本身份验证的 Web 请求。
如果这是正确的假设,那么您需要以下代码:
I'm assuming you want to create a Web Request with Basic Authentication.
If that's the correct assumption, the following code is what you need: