如何设置受密码保护的网站来测试 HTTP 身份验证质询?
我正在尝试通过针对受密码保护的网站进行测试来测试我的身份验证代码是否有效。如何使用 Mac 上内置的 Apache 服务器创建一个测试网站,以便测试 connection:didReceiveAuthenticationChallenge
委托方法? 有任何博客/资源可以展示这一点吗?
I'm trying to test if my authentication code is working by testing it against a password protected website. How can I use the built in Apache server on the mac to create a test website so that I can test the connection:didReceiveAuthenticationChallenge
delegate method?
Are there any blogs/resources that show this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的意思是简单的HTTP认证吗?
您可以设置 Apache 并在受保护目录中创建一个 .htaccess 文件,其内容为
文件 .htpasswd 需要使用 crypt 生成的输出以语法 user:crypt(password) 包含用户和密码信息。
Do you mean the simple HTTP authentication?
You can setup an Apache and create a .htaccess file in the protected directory with content
The file .htpasswd needs to have user and password info in syntax user:crypt(password) using the output generated by crypt.