License Server Authentication
Your application's license server may require some form of authentication so that it only delivers licenses to paying users. In this tutorial, we're going to use various license server endpoints that require various forms of authentication.
Please note that the license server we are using in this tutorial is a Widevine license server, so you will need to use Chrome to follow along.
To start, we're going to use the code from Basic Usage, but use this manifest and license server:
var manifestUri = '//storage.googleapis.com/shaka-demo-assets/sintel-widevine/dash.mpd';
var licenseServer = '//cwip-shaka-proxy.appspot.com/no_auth';
We'll also need to configure the player to use this license server before it loads the manifest:
player.configure({
drm: {
servers: { 'com.widevine.alpha': licenseServer }
}
});
// Try to load a manifest.
player.load(manifestUri).then(function() {
// The video should now be playing!
}).catch(onError);
Since the endpoint is /no_auth
, this should play without authentication.
Header authentication
First, we'll try authentication using headers. Change the license server to:
var licenseServer = '//cwip-shaka-proxy.appspot.com/header_auth';
This endpoint requires a specific header value to deliver a license. If you
try to use it without setting the authentication header, you will see Error
code 6007
, which means LICENSE_REQUEST_FAILED
. The JavaScript console will
show you a failed HTTP request with HTTP status code 401 (Unauthorized)
, and
playback will hang when you get to the encrypted part of the stream (10 seconds
in).
To authenticate to this endpoint, we must send a special header. You can add
arbitrary headers to Shaka's requests through a request filter callback.
Register the filter before calling player.load()
:
player.getNetworkingEngine().registerRequestFilter(function(type, request) {
// Only add headers to license requests:
if (type == shaka.net.NetworkingEngine.RequestType.LICENSE) {
// This is the specific header name and value the server wants:
request.headers['CWIP-Auth-Header'] = 'VGhpc0lzQVRlc3QK';
}
});
Load the page again, and the license request will succeed. Although we are using a fixed value for the purposes of this tutorial, your application can derive appropriate authentication header(s) before or during the callback.
Parameter Authentication
Next, we'll try authentication using URL parameters. Change the license server to:
var licenseServer = '//cwip-shaka-proxy.appspot.com/param_auth';
This endpoint requires a specific URL parameter to deliver a license. If you
try to use it without setting the parameter, you will see Error code 6007
(LICENSE_REQUEST_FAILED
) just as before with header authentication.
We can use a request filter to modify the URL and add the required parameter:
player.getNetworkingEngine().registerRequestFilter(function(type, request) {
// Only add headers to license requests:
if (type == shaka.net.NetworkingEngine.RequestType.LICENSE) {
// This is the specific parameter name and value the server wants:
request.uris[0] += '?CWIP-Auth-Param=VGhpc0lzQVRlc3QK';
}
});
Load the page again, and the license request will succeed.
Cookie Authentication
Finally, let's try using cookies for authentication. Change the license server to:
var licenseServer = '//cwip-shaka-proxy.appspot.com/cookie_auth';
This endpoint requires a specific cookie to deliver a license. If you try to
use it without setting the parameter, you will see Error code 6007
(LICENSE_REQUEST_FAILED
) just as with the other endpoints.
Cookies are set by a server to be returned to that server, and are not sent by the JavaScript application. So to set the required cookie value, point your browser to the server's set_cookie page.
Open the JavaScript console and check the value of document.cookie
to confirm
that you have the cookie. You should see "CWIP-Auth-Cookie=VGhpc0lzQVRlc3QK"
.
Now load the Shaka page again, and ... we still get error code 6007. What happened?
Cookies are considered "credentials" by the browser's XmlHttpRequest API, and credentials may not be sent cross-origin unless:
Our cookie_auth
endpoint sends back headers that allow credentialed requests,
so we set a flag in our request filter to send credentials cross-site:
player.getNetworkingEngine().registerRequestFilter(function(type, request) {
if (type == shaka.net.NetworkingEngine.RequestType.LICENSE) {
request.allowCrossSiteCredentials = true;
}
});
Load the page again, and the license request will succeed.
Always Sending Credentials
Now, you may be asking yourself: "Why not just make true
the default and
always send credentials when we have them?"
If a server does not explicitly allow credentials to be sent cross-origin, setting this flag would cause the request to fail even if the client has no cookies to send. If you'd like to try this out, clear your cookies by pointing your browser to the server's delete_cookie page. Then set your license server back to:
var licenseServer = '//cwip-shaka-proxy.appspot.com/no_auth';
Since allowCrossSiteCredentials
is true
and that endpoint doesn't
explicitly allow credentials, you'll get a failure. The JavaScript console
will show a message from the browser that says something like:
Credentials flag is 'true', but the 'Access-Control-Allow-Credentials' header
is ''. It must be 'true' to allow credentials. Origin 'http://localhost' is
therefore not allowed access.
Continue the Tutorials
Next, check out License Wrapping.