Game Hack Day NYC
OpenTok (changes)

Showing changes from revision #91 to #92: Added | Removed | Changed

Perusahaan kami adalah Perusahaan Jual Locker pertama di Indonesia yang memperkenalkan “konsep dan system penyimpanan barang / locker yang aman dan nyaman”.
Kini kebutuhan sistem penyimpanan barang menjadi prioritas yang tak terpisahkan terutama bagi Anda yang bergerak di bidang Jasa Pendidikan, Hotel, Fitness Centre, Spa, Rumah Sakit, WaterPark , Waterboom, Diskotik dan bahkan untuk di Pabrik sekalipun.

OpenTok, powered by TokBox

Kunjungi juga distributor http://tokbox.comKanopi, Been Pink & Toko Bunga Jakarta, Teralis, Gps Tracking | Anti Rayap | Pest Control

Contact Information

  • Ankur Oberoi ankur at tokbox dot com
  • twitter: ankuroberoi
  • twitter: tokboxdev

OpenTok - Hit the ground running

  • Getting Started
  • Get your API Key and visit opentok.com explore the documentation further.

Prize

Xbox 360 Kinect 4GB

Tips & Tricks

The Concepts

Session (Tokens) - Think of a session as a room a user will connect to. People in that room can either be showing their own video (Publishing) or watching other people’s video (Subscribing) or both. Everyone that walks into that room needs a token to get in. The token describes their permissions. Subscribers are allowed to watch video, Publishers are allowed show video, and Moderators are allowed to kick people out.

Connection - Whether a user is just watching (subscribing) or actually publishing, they need a connection. Creating a connection is done by calling session.connect() on the client-side.

Stream - A stream represents the video of an individual publisher (unless you explicitly ask for it to be multiplexed). You find streams in two places: the event object passed to your sessionConnected handler (when the client starts his own connection), and the event object passed to your streamCreated handler (when others join the session you are connected to).

You App’s Interaction

Implementation

  1. Decide on your interaction. Are you building One-to-One, One-to-Many, Many-to-Many, etc?

  2. Write your client-side code (Javascript or Actionscript) first. All the moving parts are down on the client. Feel free to use the sample session and token from Basic Tutorial to test this portion. There is also plenty of sample code you can find in the Tutorials section that you can grab and manipulate for all the API features.

  3. Plug in your server side code. There are only two operations you typically do on the server-side: generating sessions and generating tokens. Download one of our libraries or check out the community contributed code for more.

Tips

  • On the client side, the publisher always represents that particular user/client, subscribers are always other users in the session. When you generate tokens you can decide on who the “moderator” role belongs to, as well as “publisher” and “subscriber” roles.
  • OpenTok stays out of the way of user-management as much as it can. This means in most cases you can keep track of your users in any manner you want (database, in memory structures, etc). You will likely want to store some info about a user along with the session they belong to in one of these structures.
  • There are plenty of implementations in our Showcase and a few are open-source and available on our github repo. This may be a good place to look if you start getting stuck.