From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/rtcidentityerrorevent/index.html | 117 ++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 files/ja/web/api/rtcidentityerrorevent/index.html (limited to 'files/ja/web/api/rtcidentityerrorevent') diff --git a/files/ja/web/api/rtcidentityerrorevent/index.html b/files/ja/web/api/rtcidentityerrorevent/index.html new file mode 100644 index 0000000000..f76edfc3b8 --- /dev/null +++ b/files/ja/web/api/rtcidentityerrorevent/index.html @@ -0,0 +1,117 @@ +--- +title: RTCIdentityErrorEvent +slug: Web/API/RTCIdentityErrorEvent +translation_of: Web/API/RTCIdentityErrorEvent +--- +

{{APIRef("WebRTC")}}{{SeeCompatTable}}

+ +

RTCIdentityErrorEvent インタフェースは、通常 {{domxref("RTCPeerConnection")}} に関連付けられたアイデンティティー・プロバイダ(IdP) を示すイベントを表現します。これは、?遭遇したエラーを持ちます。{{event("idpassertionerror")}} と{{event("idpvalidationerror")}}の2つのイベントタイプを持ちます。

+ +
+

Firefox implements this interface under the following name: RTCPeerConnectionIdentityErrorEvent. It is likely that it will correct this name when it will unprefix {{domxref("RTCPeerConnection")}}, once spec and implementation will have been stabilized.

+
+ +

プロパティ

+ +

{{domxref("RTCIdentityErrorEvent")}} は {{domxref("Event")}}であり、このイベントは{{domxref("Event")}} のプロパティも実装します。

+ +
+
{{domxref("RTCIdentityErrorEvent.idp")}} {{readonlyinline}}
+
エラーレスポンスを生成したアイデンティティー・プロバイダ(idp)の{{Glossary("domain name")}} を表す{{domxref("DOMString")}}です。
+
{{domxref("RTCIdentityErrorEvent.loginUrl")}} {{readonlyinline}}
+
認証が完了可能なURLを示す{{domxref("DOMString")}} です。nullの値をとることもあり、アイデンティティー・プロバイダ(idp)から提供されます。
+
{{domxref("RTCIdentityErrorEvent.protocol")}} {{readonlyinline}}
+
利用されているIdpプロトコルを示す{{domxref("DOMString")}}です。
+
+ +

メソッド

+ +

{{domxref("RTCIdentityErrorEvent")}} は {{domxref("Event")}}であり、このイベントは{{domxref("Event")}} のプロパティも実装します。具体的な{{domxref("RTCIdentityErrorEvent")}} メソッドはありません。

+ +

+ +
pc.onidpassertionerror = function( ev ) {
+                           alert("The idp named '" +
+                                 ev.idp +
+                                 "' encountered an error " +
+                                 "while generating an assertion.");
+                         }
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('WebRTC 1.0', '#idl-def-RTCIdentityErrorEvent', 'RTCIdentityErrorEvent') }}{{Spec2('WebRTC 1.0')}}Initial definition.
+ +

ブラウザ互換性

+ +

{{ CompatibilityTable() }}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support{{ CompatVersionUnknown() }}{{ CompatVersionUnknown }} [1]{{ CompatNo() }}{{ CompatVersionUnknown() }}{{ CompatUnknown() }}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support{{ CompatUnknown() }}{{ CompatUnknown() }}{{ CompatUnknown() }}{{ CompatNo() }}{{ CompatUnknown() }}{{ CompatUnknown() }}
+
+ +

[1] Gecko はこのインタフェースを次の名前で実装しています: RTCPeerConnectionIdentityErrorEvent.

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf