Last updated
Was this helpful?
Last updated
Was this helpful?
Canvas has implemented a small piece of xAPI (Tin Can API)..
An external tool can ask for an xAPI callback URL, and then POST back an interaction activity to Canvas. This will update the activity time for the user in Canvas, and add a page view for that tool. Page views will show up in the course analytics section as activity.
The external tool should use the substitution parameter of $Canvas.xapi.url
in its LTI launch parameters.
The tool can then save the url value that is given when launched.
The tool POSTs to that url and signs the request with the LTI OAuth parameters.
The content-type should be application/json
, with an xAPI body.
Here are some good examples:
The object.id
will be logged as the page view URL.
result.duration
must be an if supplied.
Canvas page views cap at 5 minutes for now. So any value greater than that is just logged as 5 minutes.
Here is an example of the minimum JSON that would log 3 minutes of activity for http://example.com
:
This documentation is generated directly from the Canvas LMS source code, available .