Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. RTCPeerConnection
  4. setIdentityProvider()

RTCPeerConnection: setIdentityProvider() method

ThesetIdentityProvider() method of theRTCPeerConnection 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 thesignalingState is set to"closed", anInvalidStateError 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.

protocolOptional

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.

usernameOptional

A string representing the username associated with the IdP.

Return value

None (undefined).

Example

js
const pc = new RTCPeerConnection();pc.setIdentityProvider("developer.mozilla.org");

Specifications

Specification
Identity for WebRTC 1.0
# dom-rtcpeerconnection-setidentityprovider

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp