如何设置受密码保护的网站来测试 HTTP 身份验证质询?

发布于 2024-11-09 00:34:17 字数 163 浏览 0 评论 0原文

我正在尝试通过针对受密码保护的网站进行测试来测试我的身份验证代码是否有效。如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶茶白久 2024-11-16 00:34:17

你的意思是简单的HTTP认证吗?
您可以设置 Apache 并在受保护目录中创建一个 .htaccess 文件,其内容为

AuthType Basic
AuthName "Protected Area"
AuthUserFile .htpasswd
require valid-user

文件 .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

AuthType Basic
AuthName "Protected Area"
AuthUserFile .htpasswd
require valid-user

The file .htpasswd needs to have user and password info in syntax user:crypt(password) using the output generated by crypt.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文