Webex: how to list host collections

Using PHP I need to get a list of company web company meetings and display them on a web page

I tried the code on this page: https://developer.cisco.com/site/webex-developer/develop-test/xml-api/sample-code/

But that failed.

<serv:header>
    <serv:response>
        <serv:result>FAILURE</serv:result>
        <serv:reason>Failed to get SiteUrl</serv:reason>
        <serv:gsbStatus>PRIMARY</serv:gsbStatus>
        <serv:exceptionID>010000</serv:exceptionID>
    </serv:response>
</serv:header>
<serv:body>

The error message was that he could not find SiteURL. The site I used is companyname.webex.com - when I put this URL in a browser, it goes to our web page, so it seems to be correct.

I found this: http://joshuamcginnis.com/webex/ and tried (using real credentials), but it gives a 500 error and I don't have access to the logs.

Both of these examples are very old, and I try my best to find modern examples.

https://company.webex.com/WBXService/XMLService ,

- , PHP javascript

+4
1

PHP - :

<securityContext>
  <webExID>YourCiscoUsername@example.com</webExID>
  <password>YourCiscoPassword</password>
  <siteID>243585</siteID>
  <partnerID>g0webx!</partnerID>
</securityContext>

"siteName" "siteID", :

<securityContext>
  <webExID>YourCiscoUsername@example.com</webExID>
  <password>YourCiscoPassword</password>
  <siteName>go</siteName>
  <partnerID>g0webx!</partnerID>
</securityContext>

siteID siteName , , ID - . Java .Net siteName.

"go" siteName, https://go.webex.com/WBXService/XMLService

"apidemoeu", https://apidemoeu.webex.com/WBXService/XMLService

.

" SiteUrl" - , , , siteName siteID, .

0

All Articles