Hi,
I'm currently linking our external tool to moodle using LTI1.3. I've managed to get this working, but I have the following problem: I can only successfully start/login once. The first request to mod/lti/auth.php successfully redirects me to the tool (with the correct claims and all), but after that, whenever I try to login again (e.g. when I try to launch the tool with the "Select content" button) I get the following error:
Undefined property: stdClass::$lti_message_hint in <b>/bitnami/moodle/mod/lti/auth.php</b> on line <b>58</b>
The reason is that there is no cookie being sent for the first request, but there is a one being sent for the next requests (with the name MoodleSession). It seems that, because this cookie is being sent, I get an error because the lti_message_hint is not a property of the session.
What am I doing wrong?