eyeson-team / eyeson-php

eyeson video conferencing API package for PHP
MIT License
7 stars 11 forks source link

This link has passed away. Please contact the host of the video call to get access. #41

Closed vinayakmint99 closed 4 years ago

vinayakmint99 commented 4 years ago

I have created a meeting programmatically by php api and simultaneously create a guest link then I have stored both links. When I used the admin link to start the meeting then I got the error message like " The link has passed away".

The code is given below which I am using for create both links :-

define('ROOT', dirname(FILE)); require_once(ROOT.'/vendor/autoload.php');

use EyesonTeam\Eyeson\Eyeson;

$eyeson = new Eyeson('xxxxxxxxxxxxxxxxxxxxxxxxxxx');

//$room = $eyeson->join($userconf, 'Anytime Video Consult');

$options = [ 'show_names' => true, 'show_label' => true, 'exit_url' => 'https://www.eyeson.team/', 'recording_available' => true, 'broadcast_available' => true, 'layout_available' => true];

$room = $eyeson->join($userconf, null, $options); $eyeson->getLayout($room)->showNames();

$doctor_conf_url_api = $room->getUrl(); //

$patient_conf_url_api = 'https://app.eyeson.team/?guest='.$room->getGuestToken();

unused commented 4 years ago

Please note that a meeting will expire quite soon if no one joins it. Therefor only request a URL for your users when they are ready to join and forward them directly. Do not hesitate to leave a comment if this did not solve your problem. Best wishes!