files/en-us/web/api/rtcpeerconnection/icecandidateerror_event/index.md
{{APIRef("WebRTC")}}
The WebRTC API event icecandidateerror is sent to an {{domxref("RTCPeerConnection")}} if an error occurs while performing ICE negotiations through a {{Glossary("STUN")}} or {{Glossary("TURN")}} server. The event object is of type {{domxref("RTCPeerConnectionIceErrorEvent")}}, and contains information describing the error in some amount of detail.
This event is not cancelable and does not bubble.
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property.
addEventListener("icecandidateerror", (event) => { })
onicecandidateerror = (event) => { }
An {{domxref("RTCPeerConnectionIceErrorEvent")}}. Inherits from {{domxref("Event")}}.
{{InheritanceDiagram("RTCPeerConnectionIceErrorEvent")}}
The RTCPeerConnectionIceErrorEvent interface includes the properties found on the {{domxref("Event")}} interface, as well as the following properties:
null if the local IP address has not yet been exposed as part of a local ICE candidate.gathering.address. null if the connection hasn't been established (that is, if address is null).The error object's {{domxref("RTCPeerConnectionIceErrorEvent.errorCode", "errorCode")}} property is one of the numeric STUN error codes. There is one additional, WebRTC-specific, error which lies outside the valid STUN error code range: 701. Error 701 indicates that none of the ICE candidates were able to successfully make contact with the STUN or TURN server.
The 701 error is fired only once per server URL from the list of available STUN or TURN servers provided when creating the {{domxref("RTCPeerConnection")}}. These errors occur only when the connection's ICE gathering state is gathering.
The following example establishes a handler for icecandidateerrors that occur on the {{domxref("RTCPeerConnection")}} pc. This handler looks specifically for 701 errors that indicate that candidates couldn't reach the STUN or TURN server.
When this happens, the server URL and the error message are passed to a function called reportConnectFail() to log or output the connection failure.
pc.addEventListener("icecandidateerror", (event) => {
if (event.errorCode === 701) {
reportConnectFail(event.url, event.errorText);
}
});
Note that if multiple STUN and/or TURN servers are provided when creating the connection, this error may happen more than once, if more than one of those servers fails. Each provided server is tried until a connection is established.
{{Specifications}}
{{Compat}}