暖暖视频免费观**,国产免费美女被艹视频,毛片一级毛片,不卡三级

智慧服務,成就美好體驗 項目咨詢

主頁 > 服務與支持 > 開發(fā)平臺 > 客戶端SDK參考 > Web SDK > 會議 創(chuàng)建會議

入門使用

創(chuàng)建會議

更新時間:2019-11-19

描述

用戶在創(chuàng)建會議時,會查詢與用戶相關的會議列表,并查詢指定會議ID的會議詳情。

創(chuàng)建會議的前提是已完成登錄和鑒權。

業(yè)務流程

圖1 創(chuàng)建會議流程圖 
  1. 構建預約會議的數據結構bookConferenceParam。
  2. 調用bookConference()接口進行預約會議,第1步中的bookConferenceParam作為參數。

    代碼示例:

    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。

  3. 調用getMyConfList()接口獲取會議列表。

    代碼示例:

    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。

  4. 獲取要查詢的會議的confId。
  5. 調用getMyConfInfo()接口獲取第4步中confId的會議詳情。

    代碼示例:

    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。

注意事項

  1. bookConference接口要求預約時間至少大于當前時間15分鐘。
  2. 調用bookConference接口創(chuàng)建會議類型confType為0(立即)的會議時,不需要傳入角色為主席的與會者,系統(tǒng)會默認將創(chuàng)建者自己設置為主席。