简体   繁体   English

Cisco Webex - 新的参加者发送视频选项

[英]Cisco Webex - new attendeeSendVideo option

Aparently Cisco Webex has upgraded their APIs and now the service CreateTrainingSession has a new option attendeeSendVideo , that option turns ON attendees web cameras by default.显然,Cisco Webex 已经升级了他们的 API,现在CreateTrainingSession服务有一个新选项 AttendeeSendVideo ,该选项默认打开attendeeSendVideo者 web 摄像头。

The documentation does not mention where to put the new option attendeeSendVideo in the XML.文档没有提到将新选项attendeeSendVideo放在XML 中的哪个位置。

Wondering if this is new option goes in the body or header as a child property.想知道这是新选项进入body还是header作为子属性。

XML: XML:

webex_request.body = "<?xml version=\"1.0\" 
encoding=\"UTF-8\"?>
<serv:message 
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" 
  xmlns:serv=\"http://www.webex.com/schemas/2002/06/service\">
<header>
  <securityContext>
    <webExID>#{webExId}</webExID>
    <password>#{ENV['WEB_EX_PWD']}</password>
    <siteID>#{ENV['WEB_EX_SITE_ID']}</siteID>
  </securityContext>
</header>
<body>
  <bodyContent 
    xsi:type=\"java:com.webex.service.binding.training.CreateTrainingSession\">
    <schedule>
      <duration>#{duration}</duration>
    </schedule>
    <metaData>
      <confName>#{title}</confName>
    </metaData>
  </bodyContent>
</body>
</serv:message>"

The documentation says to add extra options in here enableOptions文档说在这里添加额外的选项enableOptions

https://developer.cisco.com/docs/webex-xml-api-reference-guide/#!createtrainingsession/createtrainingsession https://developer.cisco.com/docs/webex-xml-api-reference-guide/#!createtrainingsession/createtrainingsession

<bodyContent 
  xsi:type=\"java:com.webex.service.binding.training.CreateTrainingSession\">
  <schedule>
    <duration>#{duration}</duration>
  </schedule>
  <metaData>
    <confName>#{title}</confName>
  </metaData>
  <enableOptions>
    <attendeeSendVideo>true</attendeeSendVideo>
  </enableOptions>
</bodyContent>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM