Navigator.credentials - Web APIs 编辑
Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The credentials
property of the Navigator
interface returns the CredentialsContainer
interface, which exposes methods to request credentials. The CredentialsContainer
interface also notifies the user agent when an interesting event occurs, such as a successful sign-in or sign-out. This interface can be used for feature detection.
Syntax
var credentialsContainer = navigator.credentials
Value
The CredentialsContainer
interface.
Example
if ('credentials' in navigator) {
navigator.credentials.get({password: true})
.then(function(creds) {
//Do something with the credentials.
});
} else {
//Handle sign-in the way you did before.
};
Specifications
Specification | Status | Comment |
---|---|---|
Credential Management Level 1 | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论