We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8471ea6 commit 6ec80b1Copy full SHA for 6ec80b1
README.md
@@ -68,6 +68,18 @@ Add a meeting:
68
//any other parameters from [BBB API Documentation](https://docs.bigbluebutton.org/dev/api.html#create)
69
]);
70
71
+Add a meeting with pre-uploaded slides:
72
+
73
+ $meeting = [
74
+ 'id' => '123-456-789-001',
75
+ 'name' => 'A BigBlueButton meeting with custom slides',
76
+ ];
77
+ $meeting['slides'][] = new Document(
78
+ 'https://example.org/slide.png',
79
+ 'slide.png',
80
+ );
81
+ $meeting = $bbb->server->addMeeting($meeting);
82
83
Get meeting join URL for a moderator:
84
85
$full_name = 'Martin Moderator';
0 commit comments