1.1.0 • Published 6 years ago

white-token-urlsafe v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

A OpenTok Token Encoder Fork For White url token, Thank OpenTok Token.

What is different?

  • use url safe base64 encode for url query params
  • add url encode tester

Installation

npm install --save white-token-urlsafe

Usage

WARNING: This module does not check for the validity of the data being encoded into the token. It doesn't know about the OpenTok REST API semantics, and you can encode data that doesn't result in a valid token. Its merely a utility. Use the OpenTok Node Server SDK for a more complete module.

Generating a token

var encodeToken = require('white-token-urlsafe');

var tokenData = {
  session_id: 'SESSIONID',
  create_time: 1424221013,
  nonce: 50885,
  role: 'moderator',
  expire_time: 1424307413,
  connection_data: '{"name":"value"}'
};
var apiKey = 'APIKEY';
var apiSecret = 'APISECRET'

var token = encodeToken(tokenData, apiKey, apiSecret);

NOTE: The API key, secret, and session ID above are not real.

Default values

If you do not specify certain properties of the tokenData parameter, defaults will be applied for you.

PropertyTypeDefault
create_timeunix timestamp in seconds (integer)now
expire_timeunix timestamp in seconds (integer)now + 1 day
rolestring'publisher'
noncenumberunique random number