cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
109
Views
0
Helpful
0
Comments
cdnadmin
Community Member
This document was generated from CDN thread

Created by: Bakr Mohamed on 28-06-2011 02:50:18 AM
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 = "[email protected]";
$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' => '[email protected]', '&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
 
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links