外部学習ツールへのリンクを設定する場合、「セキュリティ設定」というラベルの付いたチェックボックスがあり、情報(コンテキスト情報など)を外部ツールに渡すことができます。
ツールからこの情報にアクセスするにはどうすればよいですか?
外部学習ツールへのリンクを設定する場合、「セキュリティ設定」というラベルの付いたチェックボックスがあり、情報(コンテキスト情報など)を外部ツールに渡すことができます。
ツールからこの情報にアクセスするにはどうすればよいですか?
Per the LTI spec parameters are passed as form post variables.
For example, php code to access the contact email address would be:
//Grab some LTI related parameters
if (isset($_REQUEST['lis_person_contact_email_primary']))
{
$email = $_REQUEST['lis_person_contact_email_primary'];
}
In D2L you can also combine LTI launches with Valence API calls as explained in the LTI and Valence article.
(You should also be validating the LTI oauth signature in order to be confident in your tool the request comes from the D2L Instance that has the key and secret for your tool)