Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Access to stream for subscribers

...

Passing the key using WebSDK to play stream via WebRTC

To play stream via WebRTC stream access key should be passed as custom parameter to createSession function

...

Parameter name should match to configuration setting, aclAuth in this case aclAuthcase

Passing the key as connection parameter to play stream via RTMP

...

Passing the key using Android SDK to play stream via WebRTC

To play stream via WebRTC in Android application, access key should be passed to Connection.setCustom method while connection establishing

Code Block
languagejs
themeRDark
private Session session;
private Connection connection;
...
connection = new Connection();
connection.setCustom("aclAuth", "key1");
session.connect(connection);

Parameter name should match to configuration setting, aclAuth in this case

Backward compatibility

CDN 2.2 is compatible to CDN 2.0 and 2.1, only streams with clean ACL (as just published) can be played.

...