- Inherits:
- Object
- Defined in:
- lib/opentok/opentok.rb
Overview
Contains methods for creating OpenTok sessions and generating tokens. It also includes methods for returning object that let you work with archives, work with live streaming broadcasts, using SIP interconnect, sending signals to sessions, disconnecting clients from sessions, and setting the layout classes for streams.
To create a new OpenTok object, call the OpenTok constructor with your OpenTok API key and the API secret for your OpenTok project. Do not publicly share your API secret. You will use it with the OpenTok constructor (only on your web server) to create OpenTok sessions.
Instance Method Summary
-
#archives ⇒ Object
An Archives object, which lets you work with OpenTok archives.
-
#broadcasts ⇒ Object
A Broadcasts object, which lets you work with OpenTok live streaming broadcasts.
-
#captions ⇒ Object
A Captions object, which lets you start and stop live captions for an OpenTok session.
-
#connections ⇒ Object
A Connections object, which lets you disconnect clients from an OpenTok session.
-
#create_session(opts = {}) ⇒ Session
Creates a new OpenTok session and returns the session ID, which uniquely identifies the session.
-
#generate_token(session_id, options) ⇒ String
Generates a token for a given session.
-
#initialize(api_key, api_secret, opts = {}) ⇒ OpenTok
constructor
Create a new OpenTok object.
-
#renders ⇒ Object
A Renders object, which lets you work with OpenTok Experience Composer renders.
-
#signals ⇒ Object
A Signals object, which lets you send signals to OpenTok sessions.
-
#sip ⇒ Object
A Sip object, which lets you use the OpenTok SIP gateway.
-
#streams ⇒ Object
A Streams object, which lets you work with OpenTok live streaming broadcasts.
-
#websocket ⇒ Object
A WebSocket object, which lets you connect OpenTok streams to a WebSocket URI.
Constructor Details
#initialize(api_key, api_secret, opts = {}) ⇒ OpenTok
Create a new OpenTok object.
Instance Method Details
#archives ⇒ Object
An Archives object, which lets you work with OpenTok archives.
#broadcasts ⇒ Object
A Broadcasts object, which lets you work with OpenTok live streaming broadcasts.
#captions ⇒ Object
A Captions object, which lets you start and stop live captions for an OpenTok session.
#connections ⇒ Object
A Connections object, which lets you disconnect clients from an OpenTok session.
#create_session(opts = {}) ⇒ Session
Creates a new OpenTok session and returns the session ID, which uniquely identifies the session.
For example, when using the OpenTok JavaScript library, use the session ID when calling the OT.initSession()</a> method (to initialize an OpenTok session).
OpenTok sessions do not expire. However, authentication tokens do expire (see the generateToken() method). Also note that sessions cannot explicitly be destroyed.
A session ID string can be up to 255 characters long.
Calling this method results in an OpenTokException in the event of an error. Check the error message for details.
You can also create a session using the OpenTok REST API (see /developer/rest/#session_id_production) or at your OpenTok account page.
#generate_token(session_id, options) ⇒ String
Generates a token for a given session.
#renders ⇒ Object
A Renders object, which lets you work with OpenTok Experience Composer renders.
#signals ⇒ Object
A Signals object, which lets you send signals to OpenTok sessions.
#sip ⇒ Object
A Sip object, which lets you use the OpenTok SIP gateway.
#streams ⇒ Object
A Streams object, which lets you work with OpenTok live streaming broadcasts.
#websocket ⇒ Object
A WebSocket object, which lets you connect OpenTok streams to a WebSocket URI.