开发者

Can AJAX submit credentials for Basic Authentication?

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 wit开发者_高级运维h an AJAX request?


xmlHttpRequest.setRequestHeader is your friend.

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

you just need to convert username:password to base64

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜