Implementing Activity Integration
An overview of implementing activity integration with the remote login token.
Purpose
To guide partners through the process of integrating R1 Learning activities within their applications using Remote Login Tokens.
Steps
Generate Remote Login Token: Follow the steps outlined in the Generating Remote Login Tokens section.
Construct the Activity URL:
Base URL:
https://discover.r1learning.com/activity
Append the query parameters:
rlt=[REMOTE_LOGIN_TOKEN]
: The generated Remote Login Token.user_id=[USER_ID]
: The R1 Discover ID for the user (Company User List).
Activity URLs can be obtained in the View Company Activities endpoint
Example URL
https://discover.r1learning.com/activity/identify-my-values/start/?rlt={REMOTE_LOGIN_TOKEN}&rlt_uid={USER_ID}
Embedding in iFrame:
<iframe src="https://discover.r1learning.com/activity/identify-my-values/start/?rlt={REMOTE_LOGIN_TOKEN}&rlt_uid={USER_ID}" width="800" height="600" frameborder="0" allowfullscreen></iframe>
Notes
Ensure the URL is constructed accurately with valid tokens and IDs.
Test the integration in a development environment before deploying.
Last updated