PHP Classes

File: sample/RtmTokenBuilder2Sample.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   PHP Agora Tokens   sample/RtmTokenBuilder2Sample.php   Download  
File: sample/RtmTokenBuilder2Sample.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Agora Tokens
Generate Agora user authentication tokens
Author: By
Last change:
Date: 3 days ago
Size: 590 bytes
 

Contents

Class file image Download
<?php
use \Peterujah\Agora\Agora;
use \
Peterujah\Agora\User;
use \
Peterujah\Agora\Builders\RtmToken;

$user = "2882341273";
$expireTimeInSeconds = 3600;

$client = new Agora(
   
getenv("AGORA_APP_ID"), // Need to set environment variable AGORA_APP_ID
   
getenv("AGORA_APP_CERTIFICATE"), // Need to set environment variable AGORA_APP_CERTIFICATE
);
$client->setExpiration($privilegeExpiredTs);

$user = (new User($userId))
    ->
setPrivilegeExpire($expireTimeInSeconds)
    ->
setChannel($channelName);

$token = RtmToken::buildToken($client, $user);
echo
'Rtm Token: ' . $token . PHP_EOL;