Project

vidyo

0.0
No commit activity in last 3 years
No release in over 3 years
Create vidyo.io access tokens.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0
>= 3.7.0, ~> 3.7
~> 0.9.1
 Project Readme

vidyo-ruby

Create authentication tokens for vidyo sessions in Ruby. I found token generation code in javascript, C#, and Python, but could not find anything for Ruby.

Learn more about the Vidyo API here: Vidyo API Docs.

Install

$ bundle

Usage

token = Vidyo::Token.new(
  key: 'your_vidyo_developer_key',
  application_id: 'vidyo_application_id',
  user_name: 'the user joining the session',
  expires_in: 3600
)
token.serialize

Tests

$ rspec

Based On