cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1369
Views
3
Helpful
2
Replies

Example for request parameter with SSO

shkuzu
Cisco Employee
Cisco Employee

I see the API ref.

https://developer.cisco.com/site/webex-developer/develop-test/xml-api/xml-api-reference/#lstrecording-194

In the document, I can use request header as below

<header>
   <securityContext>
   <webExID>hostid</webExID>
   <password>hostpassword</password>
   <siteID>0000</siteID>

   </securityContext>
</header>

When the user use SSO (like cisco IT), what parameters should I enter?

Could you please give me the example?

1 Accepted Solution

Accepted Solutions

ryanhunt
Level 5
Level 5

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

View solution in original post

2 Replies 2

ryanhunt
Level 5
Level 5

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

Thanks Ryan.

I'll try this