-
Bug
-
Resolution: Fixed
-
Minor
-
3.5, 3.5.1
-
MOODLE_35_STABLE
-
MOODLE_35_STABLE
-
MDL-62993_master -
Current implementation of membership service when queried for a given link id (rlid=...) will include a message attribute which can be used to get the lis_result_sourcedid for that link and user combination. The message object is directly included as the JSON Object value:
"message" : {
|
"message_type" : "basic-lti-launch-request",
|
"lis_result_sourcedid" : "..."}
|
The IMS Memberships specification however expects the message Object, even if there is only one value possible for now, to always be in an array: https://www.imsglobal.org/specs/ltimemv1p0/specification-3
"message" : [
|
{
|
"message_type" : "basic-lti-launch-request",
|
"lis_result_sourcedid" : "..."
|
}
|
]
|