diff --git a/AUTHORS b/AUTHORS index f7e9ad3936..eb83d13f1b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -31,4 +31,5 @@ Roi Lipman SameGoal Inc. <*@samegoal.com> Sanborn Hilland TalkTalk Plc <*@talktalkplc.com> +Toshihiro Suzuki uStudio Inc. <*@ustudio.com> diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 1dd5445ba9..fd9f9744df 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -47,5 +47,6 @@ Sanborn Hilland Seth Madison Thomas Stephens Timothy Drews +Toshihiro Suzuki Vasanth Polipelli Vignesh Venkatasubramanian diff --git a/docs/tutorials/license-server-auth.md b/docs/tutorials/license-server-auth.md index aac6500f7b..9939ed846c 100644 --- a/docs/tutorials/license-server-auth.md +++ b/docs/tutorials/license-server-auth.md @@ -89,6 +89,9 @@ We can use a request filter to modify the URL and add the required parameter: // Only add headers to license requests: if (type == shaka.net.NetworkingEngine.RequestType.LICENSE) { // This is the specific parameter name and value the server wants: + // Note that all network requests can have multiple URIs (for fallback), + // and therefore this is an array. But there should only be one license + // server URI in this tutorial. request.uris[0] += '?CWIP-Auth-Param=VGhpc0lzQVRlc3QK'; } }); diff --git a/externs/shaka/net.js b/externs/shaka/net.js index a9f43ef9e0..3a69f41d1a 100644 --- a/externs/shaka/net.js +++ b/externs/shaka/net.js @@ -43,6 +43,8 @@ * @property {number} timeout * The request timeout, in milliseconds. Zero means "unlimited". * + * @tutorial network-and-buffering-config + * * @exportDoc */ shakaExtern.RetryParameters;