RTCPeerConnection.getIdentityAssertion()
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 DOMString.
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
pc.getIdentityAssertion();
There is neither parameter nor return value for this method.
Example
var pc = new RTCPeerConnection();
pc.setIdentityProvider("developer.mozilla.org");
var assertion = await pc.getIdentityAssertion();
Specifications
| Specification |
|---|
| Identity for WebRTC 1.0 # dom-rtcpeerconnection-getidentityassertion |
Browser compatibility
BCD tables only load in the browser