# node-ooyala-api-client

> Ooyala API Client

Latest version **0.0.6** (published 2013-04-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-ooyala-api-client
pnpm add node-ooyala-api-client
yarn add node-ooyala-api-client
bun add node-ooyala-api-client
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2013-04-11 |
| First published | 2012-05-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Ooyala |
| Maintainers | Ooyala |

## Links

- npm: https://www.npmjs.com/package/node-ooyala-api-client
- Repository: https://github.com/ooyala/node-ooyala-api-client
- npm.io page: https://npm.io/package/node-ooyala-api-client

## Dependencies (3)

- [crypto](https://npm.io/package/crypto.md) *
- [underscore](https://npm.io/package/underscore.md) *
- [coffee-script](https://npm.io/package/coffee-script.md) 1.2.0

## Recent versions

- 0.0.6 (latest) — 2013-04-11
- 0.0.5 — 2013-03-28
- 0.0.4 — 2013-03-07
- 0.0.3 — 2013-02-06
- 0.0.2 — 2012-05-03
- 0.0.1 — 2012-05-03

## README

NODE JS wrapper for OoyalaAPI client API (v2 fashion API with sha256 signing)


Usage:

var OoyalaApi = require("node-ooyala-api-client");



var apiKey = "foo";
var apiSecret = "foo secret";
var hostName = "localhost";
var hostPort = 3101;

var client = new OoyalaApi(apiKey, apiSecret, hostName, hostPort);

var headers = null;
var apiPath = "/test"
var queryStringParams = { foo: 1 };
var callbacksContext = {
 statusCallback : function(statusCode, responseHeader) { console.log(statusCode, responseHeader); },
 dataCallback : function(data) { console.log("Body is", data); },
 errorCallback : function(error) { console.log(error); }
}
client.get(headers, apiPath, queryStringParams, callbacksContext.statusCallback,
     callbacksContext.dataCallback, callbacksContext.errorCallback, callbacksContext);

var body = "hello world";

client.post(headers, apiPath, queryStringParams, body, callbacksContext.statusCallback,
     callbacksContext.dataCallback, callbacksContext.errorCallback, callbacksContext);

---
_Source: https://npm.io/package/node-ooyala-api-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
