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