Skip to content

Commit

Permalink
Add documentation to pre-upload slides to meetings
Browse files Browse the repository at this point in the history
  • Loading branch information
sanduhrs committed Aug 5, 2020
1 parent 8471ea6 commit 6ec80b1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,18 @@ Add a meeting:
//any other parameters from [BBB API Documentation](https://docs.bigbluebutton.org/dev/api.html#create)
]);

Add a meeting with pre-uploaded slides:

$meeting = [
'id' => '123-456-789-001',
'name' => 'A BigBlueButton meeting with custom slides',
];
$meeting['slides'][] = new Document(
'https://example.org/slide.png',
'slide.png',
);
$meeting = $bbb->server->addMeeting($meeting);

Get meeting join URL for a moderator:

$full_name = 'Martin Moderator';
Expand Down

0 comments on commit 6ec80b1

Please sign in to comment.