Note: This article provides additional configuration options when using MEETS within the Canvas LMS.


By default, the MEETS landing page is the calendar page. This is the page a user sees when accessing MEETS.


MEETS offers custom parameters enabling the LTI link to open the integration platform on other endpoint pages such as the recording or attendance page. 

  1. In the MEETS admin panel, go to the LTI instance you wish to use. click on the "link" iconand select the app settings (preferred name and if you want it auto-populated in the course page). It will give you the XML URL for this instance.
  2. Copy the XML into a browser and you will get the XML printout.


For example, assuming we want the tab showing up in Canvas to be "RecordingsOnly" and we want it to only show up in the navigation and not be on every course page automatically, then the XML URL would be: https://yourorganization.meets.cirqlive.com/canvas.xml?title=RecordingsOnly&disabled  

Pasting it into the browser would give the following printout:


<cartridge_basiclti_link xmlns ="http://www.imsglobal.org/ xsd/imslticc_v1p0" xmlns:blti= "http://www.imsglobal.org/xsd/ imsbasiclti_v1p0"xmlns:lticm=" http://www.imsglobal.org/xsd/ imslticm_v1p0" xmlns:lticp="ht tp://www.imsglobal.org/xsd/ imslticp_v1p0" xmlns:xsi="http ://www.w3.org/2001/XMLSchema- instance"xsi:schemaLocation="h ttp://www.imsglobal.org/xsd/ imslticc_v1p0 http://www.imsglobal.org/xsd/ lti/ltiv1p0/imslticc_v1p0.xsd http://www.imsglobal.org/xsd/ imsbasiclti_v1p0 http://www.imsglobal.org/xsd/ lti/ltiv1p0/imsbasiclti_v1p0. xsd http://www.imsglobal.org/xsd/ imslticm_v1p0 http://www.imsglobal.org/xsd/ lti/ltiv1p0/imslticm_v1p0.xsd http://www.imsglobal.org/xsd/ imslticp_v1p0 http://www.imsglobal.org/xsd/ lti/ltiv1p0/imslticp_v1p0.xsd" >
<blti:launch_url>https://uab. meets.cirqlive.com/lti.exe</ blti:launch_url><blti:title>RecordingsOnly</ blti:title><blti:description>
This tool provides web conferencing integration with your LMS from popular web conferencing services, all powered by CirQlive.
</blti:description><blti:extensions platform="canvas.instructure.com">
<lticm:property name="prefer_ sis_email">true</lticm: property><lticm:property name="privacy_ level">public</lticm:property><lticm:options name="course_ navigation">
<lticm:property name="enabled" >true</lticm:property><lticm:property name="text">Re cordingsOnly</lticm:property><lticm:property name="default" >disabled</lticm:property>
</lticm:options>
</blti:extensions>
</cartridge_basiclti_link>



  1. Now, we need to add a section to determine the endpoint. That section is:
    <blti:custom>
    <lticm:property name="endpoint">page:content</ lticm:property>
    </blti:custom>
    and it goes right after the line of </blti:description>

So the new XML would look like this:


<cartridge_basiclti_link xmlns="http://www.imsglobal.org/xsd/imslticc_v1p0" xmlns:blti="http://www.imsglobal.org/xsd/imsbasiclti_v1p0"xmlns:lticm="http://www.imsglobal.org/xsd/imslticm_v1p0" xmlns:lticp="http://www.imsglobal.org/xsd/imslticp_v1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.imsglobal.org/xsd/imslticc_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticc_v1p0.xsd http://www.imsglobal.org/xsd/imsbasiclti_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imsbasiclti_v1p0.xsd http://www.imsglobal.org/xsd/imslticm_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticm_v1p0.xsd http://www.imsglobal.org/xsd/imslticp_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticp_v1p0.xsd">
<blti:launch_url>https://uab.meets.cirqlive.com/lti.exe</blti:launch_url>
<blti:title>RecordingsOnly</blti:title>
<blti:description>
This tool provides web conferencing integration with your LMS from popular web conferencing services, all powered by CirQlive.
</blti:description>
  <blti:custom>
    <lticm:property name="endpoint">page:content</lticm:property>
  </blti:custom>  
 
<blti:extensions platform="can vas.instructure.com">
<lticm:property name="prefer_ sis_email">true</lticm: property><lticm:property name="privacy_ level">public</lticm:property><lticm:options name="course_ navigation">
<lticm:property name="enabled" >true</lticm:property><lticm:property name="text">Re cordingsOnly</lticm:property><lticm:property name="default" >disabled</lticm:property>
</lticm:options>
</blti:extensions>

</cartridge_basiclti_link>


  1. Finally, go to Canvas, set up LTI (https://cirqlive.freshdesk.com/a/solutions/articles/8000049190) enter the key and secret from the MEETS admin panel, in the configuration type, choose "Paste XML" instead of "by URL" and paste the revised XML.