主頁(yè) > 服務(wù)與支持 > 開(kāi)發(fā)平臺(tái) > 客戶(hù)端SDK參考 > Web SDK > 會(huì)議 創(chuàng)建會(huì)議
更新時(shí)間:2019-11-19
用戶(hù)在創(chuàng)建會(huì)議時(shí),會(huì)查詢(xún)與用戶(hù)相關(guān)的會(huì)議列表,并查詢(xún)指定會(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。