AJAX 可以提交基本身份验证的凭据吗?

发布于 2024-10-19 03:43:10 字数 242 浏览 1 评论 0原文

这可能有点牵强,但我们假设我们需要它以这种方式工作:

  • 我在服务器的 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 技术交流群。

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

发布评论

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

评论(1

爱格式化 2024-10-26 03:43:10

xmlHttpRequest.setRequestHeader 是你的朋友。

xhr.setRequestHeader("Authentication", "username:password in base64")

您只需将用户名:密码转换为base64

xmlHttpRequest.setRequestHeader is your friend.

xhr.setRequestHeader("Authentication", "username:password in base64")

you just need to convert username:password to base64

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