littleredbutton / bigbluebutton-api-php

Unofficial (but better) PHP API for @BigBlueButton
GNU Lesser General Public License v3.0
25 stars 12 forks source link

is it possible to set custom parameters in the join meeting. #117

Closed joisarjignesh closed 2 years ago

joisarjignesh commented 2 years ago

is it possible to set custom parameters in the join meeting ? in the older version, we can set custom parameters in join meetings.

 Bigbluebutton::join([
                'meetingID' => 'tamku',
                'userName' => 'disa',
                'password' => 'attendee', //which user role want to join set password here
                'redirect' => false, //it will not redirect into bigblueserver
                'userId' =>  "54575",
                'customParameters' => [
                    'foo' => 'bar',
                    'key' => 'value'
                ]
  ])
SamuelWei commented 2 years ago

Currently we only support the userdata properties. However if other custom parameters are required, we should add support for it, like we did with userdata. It could be added to the BaseParameters class. @sualko @FelixJacobi what do you think?

FelixJacobi commented 2 years ago

Would be fine for me. But API parameter should be also added explicitly, of course.

sualko commented 2 years ago

What is the point of custom parameters? What is the use case?

SamuelWei commented 2 years ago

I recommended a solution for the issue in: https://github.com/joisarjignesh/bigbluebutton/issues/66#issuecomment-1073231756

SamuelWei commented 2 years ago

Stale