-
Notifications
You must be signed in to change notification settings - Fork 0
/
ltiParams.js
54 lines (47 loc) · 1003 Bytes
/
ltiParams.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const ltiParams = [
{
"key": "lti_message_type",
"value":"basic-lti-launch-request",
},
{
"key": "lti_version",
"value":"LTI-1p0",
},
{
"key": "resource_link_id",
"value":"88391-e1919-bb3456"
},
{
"key": "oauth_signature_method",
"value":"HMAC-SHA1",
},
{
"key": "oauth_version",
"value": "1.0"
},
{
"key": "roles",
"value":"Instructor",
},
{
"key": "oauth_consumer_key",
"value":"12345"
},
{
"key": "tool_secret",
"value":"secret"
},
{
"key": "lis_result_sourcedid",
"value":"123456789"
},
{
"key": "lis_outcome_service_url",
"value":"https://consumer-lti.herokuapp.com/result"
},
{
"key": "tool_provider_url",
"value":"https://lti-tool-provider.herokuapp.com/lti"
}
]
module.exports = ltiParams