Firefox 删除基本授权信息
如您所知,一旦用户登录,Firefox 就会记住用户的基本身份验证信息。
如何使用 JavaScript 以编程方式删除此信息?
场景:
- 用户登录
- 使用基本身份验证的 ajax 请求发送到服务器
- 如果成功,firefox 会记住身份验证信息
- 如果用户注销,firefox 仍然会记住它,除非重新启动浏览器。
As you know Firefox remembers the basic authentication info for a user once the user logs in.
How do I remove this programmatically using javascript?
Scenario:
- User logs in
- An ajax request using basic authentication is sent to the server
- If successful, firefox then remembers authentication info
- If user logs out, firefox still remembers it, unless browser is restarted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在网页中运行的脚本的沙盒环境中这是不可能的。
Firefox 扩展可以做到这一点(就像 Web Developer Toolbar 所做的那样),但网页不行
It's not possible from within the sandboxed environment of a script running in a web page.
It's possible for a Firefox extension to do this (as Web Developer Toolbar does), but not a web page