簡體   English   中英

在 bigbluebutton 中預上傳幻燈片

[英]Pre-upload Slides in bigbluebutton

如何使用 bigbluebutton-js npm 包預上傳幻燈片?

 let meetingCreateUrl = await api.administration.create(roomName, roomId, {
    attendeePW: attendeepassword,
    moderatorPW: moderatorpassword,
    record:true,
    allowStartStopRecording:false,
    autoStartRecording:true,
    maxParticipants:200,
 
  })
http(meetingCreateUrl)

您需要將幻燈片添加到您的創建POST請求正文中,如下所示:

<modules>
   <module name="presentation">
      <document url="http://www.sample-pdf.com/sample.pdf" filename="report.pdf"/>
      <document name="sample-presentation.pdf">JVBERi0xLjQKJ....
        [clipped here]
        ....0CiUlRU9GCg==
      </document>
   </module>
</modules>

只需確保您的請求是 Post 並且您需要為 bigbluebutton 服務器設置新配置以接受 Post 請求。

使用這兩個鏈接獲得進一步幫助:

預上傳幻燈片

允許跨域請求

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM