Hi,
I'm use List Meetings command renders an HTML page with a list of the user’s scheduled meetings. When I send a request to return Error 400 : Bad Request, and user is logged in WebEx.
WebEx ID:ucwebex03
Password:Ucwebex03
lstMeetings.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>List Meeting</title>
<STYLE>
.hdr {font-family:Verdana; font-size: 10pt; font-weight: bold; color: #000000; background-color: #99CCFF }
.reg {font-family:Verdana; font-size: 8pt; font-weight: bold; color: #000000; background-color: #EEEEEE }
.regr {font-family:Verdana; font-size: 8pt; font-weight: bold; color: #FF0000; background-color: #EEEEEE }
.regb {font-family:Verdana; font-size: 8pt; font-weight: bold; color: #0066FF; background-color: #EEEEEE }
.red {font-family:Verdana; font-size: 8pt; font-weight: bold; color: #FF0000; background-color: #ffffff }
</STYLE>
</head>
<body>
<!-- This page is rendered -->
<div align="center">
<form name="listmeeting" METHOD="POST" action=https://apidemoeu.webex.com/apidemoeu/m.php>
<table border="0" width="60%" cellspacing="0" cellpadding="0">
<tr>
<td class="hdr" width="100%" colspan="2" align="center">Meeting Page (m.php) - List Meetings</td>
</tr>
<tr>
<td class="regr" width="50%" align="right"> </td>
<td class="reg" width="50%" valign="baseline"> </td>
</tr>
<tr>
<td class="reg" width="50%" align="right">AT: </td>
<td class="regb" width="50%" valign="baseline">LM <input type="hidden" name="AT" size="20" value="LM"></td>
</tr>
<tr>
<td class="regr" width="50%" align="right">BackURL
(BU): </td>
<td class="regr" width="50%"><input type="text" name="BU" size="20" tabindex="2" value="">
</td>
</tr>
<tr>
<td class="reg" width="50%"> </td>
<td class="reg" width="50%"> </td>
</tr>
<tr>
<td class="reg" width="100%" colspan="2" align="center"><input
type="submit" value="Submit" name="B1" tabindex="2"> <input
type="reset" value="Reset" name="B2" tabindex="3"><br>
</td>
</tr>
</table>
</form>
<p class="red">* Red field names represent required fields
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hello,
There appears to be an issue with the handling of this command on the server end, but you can successfully use AT=LM using GET form method instead of POST. GET command also works outside of HTML form by using URL variables, such as the following:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
0 comments
Please sign in to leave a comment.