Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update saltire LTI URL for testing LTI 1.1/1.2 #520

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ http://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/lat
as seen above). Make a unit, select "Advanced", then "LTI Consumer".
3. Click edit and fill in the following fields:
``LTI ID``: "test"
``LTI URL``: "https://lti.tools/saltire/tp"
``LTI URL``: "https://saltire.lti.app/tool"
**Note:** If you are using more than one same LTI xblocks in the same unit,
please append the `norefresh` parameter to the LTI URL to avoid any
potential failures. Then LTI URL will look like this:
`https://saltire.lti.app/tool?norefresh`.
4. Click save. The unit should refresh and you should see "Passed" in the "Verification" field of
the message tab in the LTI Tool Provider emulator.
5. Click the "Publish" button.
Expand Down
2 changes: 1 addition & 1 deletion lti_consumer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .apps import LTIConsumerApp
from .lti_xblock import LtiConsumerXBlock

__version__ = '9.12.0'
__version__ = '9.12.1'
4 changes: 2 additions & 2 deletions lti_consumer/lti_xblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def workbench_scenarios():
ask_to_send_email="False"
enable_processors="True"
launch_target="new_window"
launch_url="https://lti.tools/saltire/tp" />
launch_url="https://saltire.lti.app/tool?norefresh" />

<lti_consumer
display_name="LTI Consumer - IFrame"
Expand All @@ -656,7 +656,7 @@ def workbench_scenarios():
enable_processors="True"
description=""
launch_target="iframe"
launch_url="https://lti.tools/saltire/tp" />
launch_url="https://saltire.lti.app/tool?norefresh" />
</sequence_demo>
'''),
]
Expand Down
Loading