- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2016 09:13 PM
I see the API ref.
In the document, I can use request header as below
<header>
</header>
<securityContext>
<webExID>hostid</webExID>
<password>hostpassword</password>
<siteID>0000</siteID>
</securityContext>
When the user use SSO (like cisco IT), what parameters should I enter?
Could you please give me the example?
Solved! Go to Solution.
- Labels:
-
Webex Developer
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2016 10:31 AM
For SSO Enabled sites you would need to perform an AuthenticateUser request first, it will return a sessionTicket element you then use instead of the password element.
<securityContext>
<webExID>hostid</webExID>
<sessionTicket>sessionTicket</sessionTicket>
<siteName>webexSite</siteName>
</securityContext>
also note siteName is recommended over siteID/PartnerID

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2016 10:31 AM
For SSO Enabled sites you would need to perform an AuthenticateUser request first, it will return a sessionTicket element you then use instead of the password element.
<securityContext>
<webExID>hostid</webExID>
<sessionTicket>sessionTicket</sessionTicket>
<siteName>webexSite</siteName>
</securityContext>
also note siteName is recommended over siteID/PartnerID
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2016 03:20 AM
Thanks Ryan.
I'll try this
