AJAX 可以提交基本身份验证的凭据吗?
这可能有点牵强,但我们假设我们需要它以这种方式工作:
- 我在服务器的 Web 根目录中有一个 index.html 文件。该文件中的 javascript 需要向 /secure/ajax.php 发出 ajax 请求
- /secure/ 目录中的所有内容都使用基本身份验证进行保护
- 我不想打扰用户登录 /secure/ 部分
我可以吗使用 AJAX 请求提交基本身份验证的凭据?
This might be a little bit of a stretch, but let's just assume that we need it to work this way:
- I have an index.html file in the web root of a server. The javascript in that file needs to make an ajax request to /secure/ajax.php
- Everything in the /secure/ directory is protected using Basic Authentication
- I don't want to bother the user with logging in to the /secure/ section
Can I submit credentials for basic authentication with an AJAX request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xmlHttpRequest.setRequestHeader 是你的朋友。
您只需将用户名:密码转换为base64
xmlHttpRequest.setRequestHeader is your friend.
you just need to convert username:password to base64