W3cubDocs

/DOM

RTCPeerConnection.setIdentityProvider

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

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

pc.setIdentityProvider(domainname [, protocol] [, username]);

There is no return value for this method.

Parameters

domainname
Is a DOMString is the domain name where the IdP is.
protocol Optional
Is a DOMString 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
Is a DOMString representing the username associated with the IdP.

Example

var pc = new PeerConnection();

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

Specifications

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support No support (Yes) [1] No support (Yes) ?
Feature Android Webview Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support No support No support ? No support ? ?

[1] Though this property is not prefixed, the interface it belongs to is.

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setIdentityProvider