Skip to content

memobr/yii-opentok

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

yii-opentok

OpenTok php library for the Yii Framework

NOTE: NOT really usable lib

##Configure First of all there is an need to configure the CApplicationComponent in your config/main.php like the following example:

<?php
return array(
    ...
    'components' => array(
        ...
        'tok' => array(
            'class'  => 'ext.yii-opentok.EOpenTok',
            'key'    => 'KEY', //provided by your opentok account
            'secret' => 'SECRET', //provided by your opentok account
        ),
        ...
    ),
    ....
);

Then in order to get the widget running you would have to create a session or retrieve a session from your "persistance" (cookie, session, db): Bottom line the widget runs like this:

<?php
$sessionId = Yii::app()->tok->createSession()->id;

$this->widget('EOpenTokWidget', array(
    'key'       => Yii::app()->tok->key,
    'sessionId' => $sessionId,
    'token'     => Yii::app()->tok->generateToken($sessionId),
));

NOTES

  • Above code is not tested it is a raw example of how to use the extension
  • EOpenTokWidget is the bear min to get nothing, you need to check the opentok documentation for your specific case.

##Resources

About

OpenTok PHP library for Yii Framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%