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 Scheduling Meetings

One Click Meeting with XML API

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi
 
I working on integrating webex meeting with one of our portal, where user can schedule meeting for later time and even do an immediate meeting.
 
I am trying to achieve something similar to impromptu meeting( URL API) by XML API, Basically i send a createMeeting command and i am triming out the Meetingurl returned by the server to generate a hostURL (ex https://apidemoeu.webex.com/apidemoeu/j.php?ED=87616732) , I open this URL in a new window, but my problem this screen ask the host to login again. Would like to know is there a way the host can be logged in directly by adding few additional parameters, something like session key? if yes what is the comman for that?
 
Thanks
Manish

Hi Manish,
 
Your createMeeting command will return back a session key that you can then use in the URL API command AT=HM.

You will have to chain to together the login and host meeting URL API commands.  The full URL will look something like this:
(replace {} with valid fields)
 
1
2[url=http://sitename.webex.com/sitename/p.php?AT=LI&WID={username}&PW={password}&BU=http%3A%2F%2Fsitename.webex.com%2Fsitename%2Fm.php%3FAT%3DHM%26MK%3D{sessionKey]http://sitename.webex.com/sitename/p.php?AT=LI&WID={username}&PW={password}&BU=http%3A%2F%2Fsitename.webex.com%2Fsitename%2Fm.php%3FAT%3DHM%26MK%3D{sessionKey[/url]}
3 


BU must be URL encoded to work correctly.  This is also the bare minimum parameters that are required. Please check the URL API reference guide for additional parameters.
 
Thank you,
-Kingsley

not working fine

Hi,

    Thanks for your inforamtion, we have tried the CreateMeeting Command in PHP, for attendee we got the URl as follows

https://classof1-dev.webex.com/classof1-dev/j.php?ED=111192842&UID=-1&PW=d5b5d76c505f424257000b010b40.

Actually by using this URL , the user need to fill userinfo, as u mentioned belowm i  tried to append the URL WID as follows  

https://classof1-dev.webex.com/classof1-dev/j.php?ED=111192842&UID=-1&PW=d5b5d76c505f424257000b010b40&WID=vivek&AT=Li

but even i cant see see teh change.

Our requirnment:

1.we need to auto login so that the attendee can skip the registration and directly the atendee can press teh join meeting .

1.Atleasrt by the URl, the Username,email,pwd should be autofilled so that the attandee can just press login.



Please  guide us wat to do.

Regards,

vivekanandan.





 

Hi Vivekanandan
 
j.php is not an API.  If you are ripping the urls from the webpages you will have a lot of problems in the future.  Those URLs can change with each update of WebEx.  Please do not use them. 
 
What you are looking for is documented in the URL API Ref guide on page 143 of the pdf file.
 
JM: Join Meeting command
Valid in: Meeting Center (MC), Training Center (TC), Sales Center (SaC)
 
This is what it would look like for your site
https://classof1-dev.webex.com/classof1-dev/m.php?AT=JM&MK=enter_meeting_number&PW=enter_meeting_password&AN=enter_attendee_name&AE=enter_attendee_email&BU=http://your_site_dot_com
 
This is the Join Meeting command:

<ul>
m.php?AT=JM
</ul>
This
is the meeting number parameter.
<ul>
&MK=enter_meeting_number
</ul>

This is the meeting password parameter.:

<ul>
&PW=enter_meeting_password
</ul>

This is the attendee name parameter. Enter the first name and last name
and separate them with a "+" or "%20" to represent a blank space.:
<ul>
&AN=enter_attendee_name
</ul>

This is the e-mail parameter. Enter the e-mail of the attendee.:

<ul>
&AE=enter_attendee_email
</ul>

This is the BU for the Join Meeting command. This URL will be loaded when the command is completed.  If your site is set up with the active x client, this URL will launch at the end of the meeting.  If you are using the java client or TFS then the URL is launched within a few seconds of starting the meeting mangaer.
<ul>
&BU=http://your_site_dot_com

Thank you
-Kingsley

</ul>
 
 

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.