limelight

0.0.2 • Public • Published

Limelight.js

A node.js library for authenticating Limelight CDN requests.

This is a simple library for authenticating node.js applications that want to communicate to the Limelight API found at http://support.video.limelight.com/support/docs/content_api/#9.0.

Usage

You can use this library by including limelight as a dependency on your node.js library.

{
  "name": "my_library",
  dependencies: {
    "needle": ">=0",
    "limelight": ">=0"
  }
}

You can then use this within your library like the following.

// Include the dependencies.
var needle = require('needle');
var limelight = require('limelight');

// Setup the variables.
var organization = '1234567890';
var access_key = '1234567890';
var secret = '1234567890';
var mediaId = '123123123123';

// Get the request URL.
var url = 'http://api.video.limelight.com/rest/organizations/' + organization + '/media/' + mediaId + '/encodings.json';

// Sign the request using limelight.authenticate
var signed_url = limelight.authenticate("GET", url, access_key, secret);

// Get the response.
needle.get(signed_url, function (error, response, info) {
  console.log(info.encodings);
});

/limelight/

    Package Sidebar

    Install

    npm i limelight

    Weekly Downloads

    14

    Version

    0.0.2

    License

    none

    Last publish

    Collaborators

    • travist