A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setIdentityProvider below:

RTCPeerConnection: setIdentityProvider() method - Web APIs

RTCPeerConnection: setIdentityProvider() method

The setIdentityProvider() method of the RTCPeerConnection interface sets the Identity Provider (IdP) to the triplet given in parameter: its name, the protocol used to communicate with it (optional) and an optional username. The IdP will be used only when an assertion is needed.

If the signalingState is set to "closed", an InvalidStateError is raised.

Syntax
setIdentityProvider(domainname)
setIdentityProvider(domainname, protocol)
setIdentityProvider(domainname, protocol, username)
Parameters
domainname

A string representing the domain name where the IdP is.

protocol Optional

A string representing the protocol used to communicate with the IdP. It defaults to "default" and is used to determine the URL where the IdP is listening.

username Optional

A string representing the username associated with the IdP.

Return value

None (undefined).

Example
const pc = new RTCPeerConnection();

pc.setIdentityProvider("developer.mozilla.org");
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.3