blob: ab17b4a0bcc789a53583622c869c55401dd6c7e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
---
title: AuthenticatorAttestationResponse
slug: Web/API/AuthenticatorAttestationResponse
tags:
- API
- Authentication
- AuthenticatorAttestationResponse
- Interface
- Reference
- Web Authentication API
- WebAuthn
- インターフェイス
translation_of: Web/API/AuthenticatorAttestationResponse
---
<div>{{APIRef("Web Authentication API")}}{{securecontext_header}}</div>
<p><strong><code>AuthenticatorAttestationResponse</code></strong> は <a href="/ja/docs/Web/API/Web_Authentication_API">Web Authentication API</a> のインターフェイスで、 {{domxref('CredentialsContainer.create()')}} に {{domxref('PublicKeyCredential')}} を渡すと返されます。そして、生成された新しいキーペアの暗号化信頼ルートを提供します。このレスポンスは認証情報の生成を完了させるために、信頼されている側のサーバーに送信されます。</p>
<p>このインターフェイスは {{domxref("AuthenticatorResponse")}} を継承しています。</p>
<div class="note">
<p><strong>メモ:</strong> このインターフェイスは最上位のコンテキストに限定されています。 {{HTMLElement("iframe")}} 要素の中で使用しても、何も効果がありません。</p>
</div>
<h2 id="Properties" name="Properties">プロパティ</h2>
<dl>
<dt><code>AuthenticatorAttestationResponse.clientDataJSON</code> {{securecontext_inline}}{{readonlyinline}}</dt>
<dd>認証のためのクライアントデータで、オリジンやチャレンジです。 {{domxref("AuthenticatorAttestationResponse.clientDataJSON","clientDataJSON")}} プロパティは {{domxref("AuthenticatorResponse")}} から継承しています。</dd>
<dt>{{domxref("AuthenticatorAttestationResponse.attestationObject")}} {{securecontext_inline}}{{readonlyinline}}</dt>
<dd>{{jsxref("ArrayBuffer")}} で、新しく生成されたキーペアのための認証機器のデータとアテステーションステートメントが入ります。</dd>
</dl>
<h2 id="Methods" name="Methods">メソッド</h2>
<dl>
<dt>{{domxref("AuthenticatorAttestationResponse.getTransports()")}}{{securecontext_inline}}</dt>
<dd>文字列の {{jsxref("Array")}} で、認証機器がどの転送方法 (<code>usb</code> や <code>nfc</code> など) に対応していると信じられるかを記述します。情報が利用できない場合は、配列が空になることがあります。</dd>
</dl>
<h2 id="Examples" name="Examples">例</h2>
<pre class="brush: js">var publicKey = {
challenge: /* from the server */,
rp: {
name: "Example CORP",
id : "login.example.com"
},
user: {
id: new Uint8Array(16),
name: "jdoe@example.com",
displayName: "John Doe"
},
pubKeyCredParams: [
{
type: "public-key",
alg: -7
}
]
};
navigator.credentials.create({ publicKey })
.then(function (newCredentialInfo) {
var response = newCredentialInfo.response;
// Do something with the response
// (sending it back to the relying party server maybe?)
}).catch(function (err) {
console.error(err);
});</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('WebAuthn','#authenticatorattestationresponse', 'AuthenticatorAttestationResponse interface')}}</td>
<td>{{Spec2('WebAuthn')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.AuthenticatorAttestationResponse")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("AuthenticatorAssertionResponse")}}: 既存の認証情報を受け取る際にレスポンスの種類のインターフェイス</li>
<li>{{domxref("AuthenticatorResponse")}}: 親インターフェイス</li>
</ul>
|