Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 756 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 756 Bytes

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