Skip to content

Commit

Permalink
MDL-70074 mod_lti: add authorization_endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
claudevervoort committed Oct 30, 2020
1 parent 99680d1 commit 6f34fe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/lti/openid-configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@
'token_endpoint_auth_methods_supported' => ['private_key_jwt'],
'token_endpoint_auth_signing_alg_values_supported' => ['RS256'],
'jwks_uri' => (new moodle_url('/mod/lti/certs.php'))->out(false),
'authorization_endpoint' => (new moodle_url('/mod/lti/auth.php'))->out(false),
'registration_endpoint' => (new moodle_url('/mod/lti/openid-registration.php'))->out(false),
'scopes_supported' => $scopes,
'response_types_supported' => ['id_token'],
'subject_types_supported' => ['public', 'pairwise'],
'id_token_signing_alg_values_supported' => ['RS256'],
'claims_supported' => ['sub', 'iss', 'name', 'given_name', 'family_name', 'email'],
'https://purl.imsglobal.org/spec/lti-platform-configuration ' => [
'https://purl.imsglobal.org/spec/lti-platform-configuration' => [
'product_family_code' => 'moodle',
'version' => $CFG->release,
'messages_supported' => ['LtiResourceLink', 'LtiDeepLinkingRequest'],
Expand Down

0 comments on commit 6f34fe6

Please sign in to comment.