RTCPeerConnection.onidpassertionerror
Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The RTCPeerConnection.onidpassertionerror
event handler
is a property containing the code to execute whent the idpassertionerror
event, of type RTCIdentityErrorEvent
, is received by this
RTCPeerConnection
. Such an event is sent when the associated identity
provider (IdP) encounters an error while generating an identity assertion.
This event handler is deprecated. You should instead detect IdP assertion
errors by handling rejection of the promise
returned by
RTCPeerConnection.peerIdentity
.
Syntax
peerconnection.onidpassertionerror = function;
Values
function
is the name of a user-defined function, without the()
suffix or any parameters, or an anonymous function declaration, such asfunction(event) {...}
. An event handler always has one single parameter, containing the event, here of typeRTCIdentityErrorEvent
.
Example
pc.onidpassertionerror = function(ev) { alert("onidpassertionerror event detected!"); };
Browser compatibility
BCD tables only load in the browser
See also
- The
idpassertionerror
event and its type,RTCIdentityErrorEvent
.