W3cubDocs

/Web APIs

RTCPeerConnection: setIdentityProvider() method

The RTCPeerConnection.setIdentityProvider() method 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

js

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

js

const pc = new RTCPeerConnection();

pc.setIdentityAssertion("developer.mozilla.org");

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
setIdentityProvider No ≤18–79 40 No No No No No 40 No No No

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setIdentityProvider