Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. RTCPeerConnection
  4. getIdentityAssertion()

RTCPeerConnection: getIdentityAssertion() method

ThegetIdentityAssertion() method of theRTCPeerConnection interface initiates the gathering of an identity assertion.This has an effect only if thesignalingState is not"closed".

It is not expected for the application dealing with theRTCPeerConnection: this is automatically done; an explicit call only allows to anticipate the need.

Syntax

js
getIdentityAssertion()

Parameters

None.

Return value

APromise which resolves to an identity assertion encoded as a string.

Example

js
const pc = new RTCPeerConnection();pc.setIdentityProvider("developer.mozilla.org");const assertion = await pc.getIdentityAssertion();

Specifications

Specification
Identity for WebRTC 1.0
# dom-rtcpeerconnection-getidentityassertion

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp