You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After some tests and brief review and screening the code, for my use case the Api it's not easy to use, for example to get the meetings list I've ended doing something like :
`
b = BigBlueButton('https://XXXXXXXXXXXXXX/bigbluebutton/', 'XXXXXXXXXXXXXXXXXXXXXXXXX')
meetings=b.get_meetings().get_meetings()
the first get_meetings get the Reponse object from which we get the meeting Array..
I would like to have a more natural approach as
meetings=b.get_meetings()
Is a big API change...
The text was updated successfully, but these errors were encountered:
After some tests and brief review and screening the code, for my use case the Api it's not easy to use, for example to get the meetings list I've ended doing something like :
the first get_meetings get the Reponse object from which we get the meeting Array..
I would like to have a more natural approach as
meetings=b.get_meetings()
Is a big API change...
The text was updated successfully, but these errors were encountered: