安全上下文
此特征只可用于
安全上下文
(HTTPS),在某些或所有
支持浏览器
.
isUserVerifyingPlatformAuthenticatorAvailable()
is a static method of the
PublicKeyCredential
interface that returns a
Promise
which resolves to
true
if a user-verifying platform authenticator is available.
A user-verifying platform authenticator is a kind of multi-factor authenticator that is part of the client device (it is generally not removable) and that involves an action from the user in order to identify them.
At the time of this writing, this method's result only resolves to
true
on Windows when
Windows Hello
capabilities are available (on recent versions of this OS).
注意:
This method may only be used in top-level contexts and will not be available in an
<iframe>
例如。
PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()
None.
A
Promise
which resolves to a
布尔
indicating whether or a not a user-verifying platform authenticator is available. As of today (March 2019), this is basically indicating if
Windows Hello
may be used with the
Web 身份验证 API
and that the user has accepted its use.
注意:
This is a static method which is directly called on the
PublicKeyCredential
interface and not on an instance.
注意: In earlier versions of the specification, the boolean also conveyed the consent of the user to disclose such an authenticator existed.
PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()
.then(function(available){
if(available){
// We can proceed with the creation of a PublicKeyCredential
// with this authenticator
} else {
// Use another kind of authenticator or a classical login/password
// workflow
}
}).catch(function(err){
// Something went wrong
console.error(err);
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web Authentication: An API for accessing Public Key Credentials Level 1
The definition of 'isUserVerifyingPlatformAuthenticatorAvailable' in that specification. |
推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
isUserVerifyingPlatformAuthenticatorAvailable
|
Chrome
67
|
Edge 18 |
Firefox
60
|
IE No | Opera No | Safari 13 | WebView Android 70 | Chrome Android 70 |
Firefox Android
60
|
Opera Android No | Safari iOS 13.3 | Samsung Internet Android No |
完整支持
不支持
见实现注意事项。
用户必须明确启用此特征。
isUserVerifyingPlatformAuthenticator()
PublicKeyCredential
getClientExtensionResults()
isUserVerifyingPlatformAuthenticatorAvailable()