Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

LTI version

Rogo supports LTI version 1.1

LTI Launching

To enable LTI capability the authentication array in /config/config.inc.php must be set:

Code Block
languagephp
$authentication = array(
  array('ltilogin', array(), 'LTI Auth'),


Configurarion Configuration of the LTI integration is possible via the rogo configuration screen.

namedescriptiondefault value
Allow LTI client to create a module in Rogo if it does not exist.Disabled
Allow a student user in the LTI client to self register onto a module in Rogo.Disabled
Alloe a staff user in the LTI client to join a module team in Rogo.Disabled

Lifetime (in seconds) of LTI login authentication.9072000

LTI type:

  • default - generic LTI integration
  • UoN - University of Nottingham specific integration
default
lti_ssl_verifypeerenable/disable peer verification on ssl1
lti_ssl_verifyhostenable/disable host verification on ssl (note 0 disables, 2 enables, 1 is deprecated in curl lib)2

External System

To link to an external system a key needs to be setup in Administration > LTI Keys

At minimum the following needs to be provided

  1. Name - internal to rogo to differentiate between keys in a human readable way
  2. Shared Secret - think of this as the password for the connection. this should be unique and be provided to the external client system as they will need it to connect.
  3. Consumer Key - think of this as the username for the connection. this should be unique and be provided to the external client system as they will need it to connect.


The external system will also need the URL it is to connect to this is <your rogo site>/LTI/

User Journey

Steps taken when LTI launch is detected:

...

  1. Formative
  2. Progressive
  3. Survey
  4. OSCE


Unlink User accounts

It may be necessary to unlink a user from the external system to their account in Rogo.

This can be done by going to Administration > LTI Keys selecting the LTI connection then selecting Search LTI user links once found the user connection can be deleted. This will force the user to login in again to rogo the next time they attempt to connect to Rogo via the external system.


Database Tables

lti_contextHolds the link information between lti context and the Rogo course.
lti_keysHolds the LTI keys information.
lti_resourceHolds the link information between lti resourse and the Rogo paper.
lti_userLTI Holds the link information between the LTI user and the Rogo user ID.

...