Inserting Statements

INSERTING STATEMENTS GUIDE

To quickly try out inserting statements into your Learning Locker instance you can use Postman. Postman is a tool for creating and sending HTTP requests. You can download and install Postman via their website. Once you’ve installed Postman, you can check out the documentation for our xAPI HTTP Interface.

Before you start designing and inserting your own statements in production, you should consider using tools that already transmit xAPI statements. If you can’t use any of these existing tools, there are a number of processes and best practices that you can follow to fall into the pit of success when designing and transmitting your own statements.

LIST EXPERIENCES

At this stage you should figure out which experiences are important to track (e.g. logging in, completing a quiz, watching a video, etc.) and what data you ideally need to capture for analysis (e.g. quiz score, video duration, etc.). When creating this list, you may wish to consider the data required to:

  • Answer your research questions.

  • Produce your stakeholder reports.

  • Adapt and improve the experiences of your users.

CREATE RECIPES

At this stage you should create some example statements for each of the experiences you listed earlier ensuring that you include all of the data required for each experience inside the statement.

Before you create a recipe, consider reusing one of the recipes in the Tin Can Registry as this will hopefully save you some time, improve your compatibility with existing systems, and ensure that you’re using best practices. You may need to adapt these existing recipes to better meet your needs, as you may require additional data or not require some of the data they specify.

If you can’t find an existing recipe, don’t worry, it’s easy to create your own and we have some guidelines below.

  • Your actors should be identified by an account, where the homePage is an IRI for the application and the name is an identifier for the user. Other identifier types are available, but we recommend using an account.

  • Try to select an appropriate verb from the Tin Can Registry before creating your own.

  • Try to select an appropriate activity type from the Tin Can Registry before creating your own.

  • Only include one language in your languages maps. Preferably this should use the language of the user.

  • You should set a timestamp with the correct time zone, otherwise the LRS will generate one that uses the time the statement was stored instead of the time an experience occurred, which is inaccurate for analysis.

  • Your verb and object identifiers should preferably resolve to a JSON representation of the verb or object.

  • The statement context should contain some minimal debugging information in the extensions. For example, you might define the version of your statement transmission tool and platform.

A statement for “viewing an application” using these guidelines might look a bit like the statement below.

{ "actor": { "name": "Example User", "account": { "homePage": "http://www.example.org", "name": "example_user_id" } }, "verb": { "id": "http://id.tincanapi.com/verb/viewed", "display": { "en": "viewed" } }, "object": { "id": "http://www.example.org", "definition": { "type": "http://activitystrea.ms/schema/1.0/application", "name": { "en": "Example Application" } } }, "context": { "platform": "Example Platform", "language": "en", "extensions": { "http://www.example.org/transition_tool_version": "1.0.0" }, }, "timestamp": "2015-01-01T01:00Z" }

There are more example statements provided in the xAPI specification. For further support and consultation, you can email hello@learninglocker.net.

MAP VARIABLES

Using the recipes from the previous step, you should map the data required in each of the recipes to variables in your application. You might find it useful to use a table like the one below.

Statement Property

Mapping

Statement Property

Mapping

actor.name

User’s full name from our user data model.

actor.account.homePage

The URL of the application: “http://www.example.org

actor.account.name

User’s identifier from our user data model.

object.id

The URL of the application: “http://www.example.org

IDENTIFY SOURCES

At this stage, you should identify where the statement will be constructed and transmitted for each recipe that you identified earlier.

You should consider whether you will be sending statements from the client-side or the server-side for each recipe as this will affect the transmission implementation. Alternatively, you may be creating statements using an external service, so at this stage you may also wish to consider whether you will need to poll that service for events or whether you can use webhooks or an event listener (with something like Redis).

IMPLEMENTING TRANSMISSION

At this stage, you can start planning and implementing the transmission of statements to your Learning Locker instance via the xAPI HTTP Interface. However, there are a number of things listed below that you should consider before you begin.

BATCHING STATEMENTS

If you’re potentially sending a significant number of statements in a short period of time, you should consider sending statements to the LRS in batches to improve response times, reduce HTTP requests, and reduce the elapsed time spent sending statements. For example, on the server-side this may be implemented with the use of a statement log and a cron job (the Moodle Logstore plugin is an example of this).

HANDLING SENDING FAILURES

If a statement fails to be sent you may want to consider implementing some retry strategies to resend statements that previously failed to be stored (normally because of downtime). We’d recommend that you send these failed statements in batches. If you’re sending statements from the client-side, we’d recommend that you wait 5-60 seconds between retries and retry a maximum of 3-5 times. If you’re sending statements server-side, you may want to consider storing failed statements somewhere and using a Cron job to send them.

SENDING SECURELY

If you’re sending statements from the server-side this shouldn’t be an issue as the LRS credentials are not exposed. However, if you’re sending statements from the client-side, you should consider finding a way to protect the LRS credentials so that they’re not exposed to tech-savvy users, since a malicious user may try to read sensitive data from, or write unwanted data to, the LRS. We’d recommend using the xAPI launch process with Learning Locker’s Launchr, you can email hello@learninglocker.net for more information about this.

Learning Locker and the Squirrel logo are trademark of Learning Pool 2020 | Learning Locker is licensed under GPL 3.0.