RTCPeerConnection: getIdentityAssertion() method
The RTCPeerConnection.getIdentityAssertion()
method initiates the gathering of an identity assertion. This has an effect only if the signalingState
is not "closed"
.
The method returns a JavaScript Promise
which resolves to an identity assertion encoded as a string.
It is not expected for the application dealing with the RTCPeerConnection
: this is automatically done; an explicit call only allows to anticipate the need.
Syntax
There is neither parameter nor return value for this method.
Example
const pc = new RTCPeerConnection();
pc.setIdentityProvider("developer.mozilla.org");
const assertion = await pc.getIdentityAssertion();
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
getIdentityAssertion |
No |
≤18–79 |
40 |
No |
No |
No |
No |
No |
40 |
No |
No |
No |
See also