Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. Credential

Credential

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2019⁩.

* Some parts of this feature may have varying levels of support.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

TheCredential interface of theCredential Management API provides information about an entity (usually a user) normally as a prerequisite to a trust decision.

Credential objects may be of the following types:

Instance properties

Credential.idRead only

Returns a string containing the credential's identifier. This might be any one of a GUID, username, or email address.

Credential.typeRead only

Returns a string containing the credential's type. Valid values arepassword,federated,public-key,identity andotp. (ForPasswordCredential,FederatedCredential,PublicKeyCredential,IdentityCredential andOTPCredential)

Static methods

Credential.isConditionalMediationAvailable()Experimental

Returns aPromise which always resolves tofalse. Subclasses may override this value.

Examples

js
const pwdCredential = new PasswordCredential({  id: "example-username", // Username/ID  name: "Carina Anand", // Display name  password: "correct horse battery staple", // Password});console.assert(pwdCredential.type === "password");

Specifications

Specification
Credential Management Level 1
# the-credential-interface

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp