API Webhooks
Description of the events triggered by the webhooks
Everything you need to know about Mconf.
Run Mconf-Web in development, access it (localhost:3000
) and sign in as admin. Go to the management page, click “edit” and check the checkbox Shibboleth: Enable
.
Edit the following attributes and then save the configurations (the values for the fields below were taken from the the method test_data
in the file mconf-web/app/controllers/shibboleth_controller.rb
):
Shib-inetOrgPerson-mail
Shib-inetOrgPerson-cn
Shib-inetOrgPerson-mail
Shib.*
Open mconf-web/app/controllers/shibboleth_controller.rb
and add the function test_data
as the first call inside the load_shib_session
function.
In production, all the Shibboleth protocol is implemented by modules installed in Apache (mod_shib
).
They will handle all the communication and all Mconf-Web needs to do is read the user data from environment variables after the user authenticates.
In development, however, there is no Apache to do all the communication, so we need to fake it.
The method test_data
simulates what mod_shib
does after the user authenticates: it sets several environment variables with data such as the user’s name and email.
So by calling test_data
in a place before Mconf-Web actually deals with the data, we can pretend a user is signing in via Shibboleth.
The rest of the configurations done above (setting the attributes in the management page) are done for production also.
That’s because we need to tell Mconf-Web from which environment variables it should read the user data.
So these variables should be the same as the ones set in test_data
, however they are called.
Description of the events triggered by the webhooks
A list of internal messages that go through redis on BigBlueButton
Este tutorial mostra como funciona o módulo de notas compartilhadas no Mconf
Este tutorial mostra as funções de moderação de usuários em uma conferência no Mconf.
Este tutorial inclui informações sobre como modificar o layout (disposição e visibilidade das janelas internas) de uma conferência no Mconf
Este tutorial mostra como funciona a integração do Mconf com o Moodle.
Este tutorial mostra como gravar e como visualizar conferências no Mconf
Este tutorial ensina como compartilhar documentos em uma conferência e como interagir com o quadro branco
Este tutorial mostra como utilizar o compartilhamento de tela Java em uma conferência no Mconf
Instructions to test Mconf-Web