RTCPeerConnection: getIdentityAssertion() method
The getIdentityAssertion()
method of the RTCPeerConnection
interface 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
js
getIdentityAssertion()
There is neither parameter nor return value for this method.
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
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
getIdentityAssertion |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
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.