过时
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

RTCIdentityEvent interface represents an identity assertion generated by an identity provider (idP). This is usually for an RTCPeerConnection . The only event sent with this type is identityresult ..

Firefox implements this interface under the following name: RTCPeerConnectionIdentityEvent. It is likely that it will correct this name when it will unprefix RTCPeerConnection , once spec and implementation will have been stabilized.

特性

RTCIdentityEvent being an 事件 , this event also implements these properties .

RTCIdentityEvent.assertion 只读
返回 DOMString containing a blob being the assertion generated.

方法

RTCIdentityEvent being an 事件 , this event also implements these properties . There is no specific RTCIdentityEvent 方法。

范例

pc.onidentityresult = function( ev ) {
                         alert("A new identity assertion (blob: '" +
                               ev.assertion +
                               "') has been generated.");
                      }
					

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
RTCIdentityEvent 弃用 非标 Chrome No Edge No Firefox ? Alternate Name
? Alternate Name
Alternate Name Uses the non-standard name: RTCPeerConnectionIdentityEvent
IE No Opera Yes Safari ? WebView Android No Chrome Android No Firefox Android ? Opera Android ? Safari iOS ? Samsung Internet Android No
assertion 弃用 非标 Chrome No Edge No Firefox ? IE No Opera Yes Safari ? WebView Android No Chrome Android No Firefox Android ? Opera Android ? Safari iOS ? Samsung Internet Android No

图例

完整支持

完整支持

不支持

不支持

兼容性未知 ?

兼容性未知

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

非标。预期跨浏览器支持较差。

非标。预期跨浏览器支持较差。

弃用。不要用于新网站。

弃用。不要用于新网站。

使用非标名称。

另请参阅

元数据

  • 最后修改: