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.
pc.setIdentityProvider(domainname [, protocol] [, username]);
There is no return value for this method.
DOMString
is the domain name where the IdP is.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.DOMString
representing the username associated with the IdP.var pc = new PeerConnection(); pc.setIdentityAssertion("developer.mozilla.org");
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCPeerConnection.setIdentityProvider()' in that specification. | Candidate Recommendation | Initial specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 56 | Yes | 22 | ? | 43
|
? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 56 | 56 | Yes | 44 | 43
|
? | 6.0 |
© 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