更新時(shí)間:2019-11-19
用戶在創(chuàng)建會(huì)議時(shí),會(huì)查詢與用戶相關(guān)的會(huì)議列表,并查詢指定會(huì)議ID的會(huì)議詳情。
創(chuàng)建會(huì)議的前提是已完成登錄和鑒權(quán)。
代碼示例:
client.bookConference({ topic: topic, duration: parseInt(duration), isVideo: confType, isHdConf:isHDConf, confType:startType, startTime: startType == 0 ? null : { year: newDate.getFullYear(), month: (newDate.getMonth() + 1), date: newDate.getDate(), hours: newDate.getHours(), minutes: newDate.getMinutes() }, language: 1, attendees: attendeeList }, function (ret) { alert("bookConference callback" + JSON.stringify(ret)) }) |
參考文件:\usage\components\book_conf.html。
代碼示例:
var getMyConfList = function (pageIndex) { var pageSize = 6; client.getMyConfList(pageIndex, pageSize, function (ret) { if (ret.result) { var data = ret.info for (var m in data) { //process data } } }) } |
參考文件:\usage\components\conf_list.html。
代碼示例:
var getMyConfInfo = function (conf_id) { client.getMyConfInfo(conf_id, function (ret) { if (ret.info) { var data = ret.info //Process the conference information } }) } |
參考文件:\usage\components\conf_list.html。