Hi,
i’m getting an error while creating a room
this is the error i read from my code (firebug)
file_get_contents(https://vyew.com/api/api.php?cmd=create&name=&type=vyew&owner=&key=cab449b34a&time=1254352590&md5=9248e6e37c19c6e339fb9fc99ded1fb4) [function.file-get-contents]: failed to open stream: No error in D:\xampp\htdocs\proy_adminV.beta1\php\VyewAPI.php on line 981
Failed to create meeting
As you can see i get the error on line 981 (same error as i saw on a different post but was unanswered). This is the code i use
$api_key="cab449b34a";
$api_secret="****************";
require_once('VyewAPI.php');
$vyew = new VyewAPI($api_key, $api_secret);
//Create a new meeting room
$res=$vyew->create();
if($res[0]!=1) die("Failed to create meeting");
$vyewBookID=$res[2];
$roomURL=$res[3];
of course the ************ is the api secret provided by vyew. $res[0] returns 0… no idea what that means....
i used the address generated and used in line 981 (https://vyew.com/api/api.php?cmd=create&name=&type=vyew&owner=&key=cab449b34a&time=1254352590&md5=9248e6e37c19c6e339fb9fc99ded1fb4) on my browser and it shows a simple html with the text:
0|Error: Missing API key.
Can anybody help please,
Reguards,
Malcolm