Please note: These WebEx forums have replaced the earlier site forums. All the previous threads and posts have been replicated here, and if you subscribed to the previous forums, please re-subscribe. Thank you.
« Back to Meeting Listings

Please, help me

Combination View Flat View Tree View
Threads [ Previous | Next ]
Dear all,
I am a PHP developer, and i need to know some things about webes URL API
1- can i try api with free account ? and what is siteID, partnerID, siteURL for it ?
2- to create meating or to do any activities I thinks that I must login frist. But I don't know how can I do it. 
This is my code 
 
<?php
 
$siteURL = "freetrial.webex.com/freetrial/";
$webExID = "bakr_mohamed84@hotmail.com";
$password = "Bm7442219";
$siteID = "243585";
$partnerID = "g0webx!";
 
// LOGIN CURL PHP function
$data = array('&WID' => '$webExID', '&PW' => '$password');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://' . $siteURL .'p.php?AT=LI');
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
curl_close($ch);
 
// New User Signup command

$data = array('&FN' => 'mohamed', '&LN' => 'sesy', '&EM' => 'm.sesy@shourasoft.com', '&PW' => '123456', '&WID' => '123456');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://' . $siteURL .'p.php?AT=SU');
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
curl_close($ch);
?>

 
But it don't work or add any users.
Please if there any one have login and creat meeting or any other activity after login, please tell me about it.
 
Thanks & Best Regards
 

Create a Cisco account today and gain access across all Cisco Collaboration Developer sites.

 

Follow the WebEx Developer program on Twitter for the latest industry and WebEx Meetings related information.