Credential
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。
Credential
は資格情報管理 API のインターフェイスで、信頼の判断に必要なエンティティ(普通はユーザー)についての情報を提供します。
Credential
オブジェクトには 4 つの異なる型になる可能性があります。
プロパティ
Credential.id
読取専用-
認証情報の識別子の入った文字列を返します。これは GUID、ユーザー名、メールアドレスのいずれかになる可能性があります。
Credential.type
読取専用-
認証情報の種別の入った文字列を返します。有効な値は
password
,federated
,public-key
の何れかです。(それぞれPasswordCredential
,FederatedCredential
,PublicKeyCredential
)
イベントハンドラー
なし
メソッド
なし
例
js
let pwdCredential = new PasswordCredential({
id: "example-username", // Username/ID
name: "Carina Anand", // Display name
password: "correct horse battery staple", // Password
});
console.assert(pwdCredential.type === "password");
仕様書
Specification |
---|
Credential Management Level 1 # the-credential-interface |
ブラウザーの互換性
BCD tables only load in the browser