--- title: RTCIdentityEvent slug: orphaned/Web/API/RTCIdentityEvent translation_of: Web/API/RTCIdentityEvent original_slug: Web/API/RTCIdentityEvent ---
{{APIRef("WebRTC")}}{{SeeCompatTable}}
RTCIdentityEvent インタフェースは、通常 {{domxref("RTCPeerConnection")}}に関連付けられたアイデンティティー・プロバイダ(IdP) を示すイベントを表現します。これはIDアサーションによって生成されたものです。イベントタイプは{{event("identityresult")}}です。
Firefox implements this interface under the following name: RTCPeerConnectionIdentityEvent. It is likely that it will correct this name when it will unprefix {{domxref("RTCPeerConnection")}}, once spec and implementation will have been stabilized.
{{domxref("RTCIdentityEvent")}} は {{domxref("Event")}} であり, このイベントは {{domxref("Event")}} のプロパティも実装します。
{{domxref("RTCIdentityEvent")}} は {{domxref("Event")}} であり, このイベントは {{domxref("Event")}} のプロパティも実装します。具体的な {{domxref("RTCIdentityEvent")}} メソッドはありません。
pc.onidentityresult = function( ev ) {
alert("A new identity assertion (blob: '" +
ev.assertion +
"') has been generated.");
}
| Specification | Status | Comment |
|---|---|---|
| {{ SpecName('WebRTC 1.0', '#idl-def-RTCIdentityEvent', 'RTCIdentityEvent') }} | {{Spec2('WebRTC 1.0')}} | Initial definition. |
{{Compat("api.RTCIdentityEvent")}}