RTCPeerConnectionIceEvent: url property
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 read-only url property of the RTCPeerConnectionIceEvent interface returns the URL of the STUN or TURN server used to gather the ICE candidate that caused the event. If the candidate was not gathered from a STUN or TURN server, the value is null.
Note:
This property is considered deprecated by the specification in favor of the url property on the RTCIceCandidate interface itself.
Value
A string containing the URL of the STUN or TURN server used to gather this candidate, or null if the candidate was not gathered from a server (for example, a local host candidate).
Examples
>Logging the ICE server URL
pc.onicecandidate = (event) => {
if (event.candidate) {
console.log(`Candidate gathered from: ${event.url}`);
}
};
Specifications
| Specification |
|---|
| WebRTC: Real-Time Communication in Browsers> # dom-rtcpeerconnectioniceevent-url> |