You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a bug but an issue I am facing while deeplinking.
how to get the LTI_key. I am using node js with express. I am currently using the following code to create the public and private key to get the jwk:
It will create the 3 files in the root folder. public.key and private.key and jwk.json. I want to use Canvas LMS and there is an option while creating the the developer key, Public JWK. I am using this generated jwk to set there and using the public file at line in lti.setup
staticPath: path.join(__dirname, "public"),
using the following code to setup the lti and register the platform.
Not a bug but an issue I am facing while deeplinking.
how to get the LTI_key. I am using node js with express. I am currently using the following code to create the public and private key to get the jwk:
It will create the 3 files in the root folder. public.key and private.key and jwk.json. I want to use Canvas LMS and there is an option while creating the the developer key, Public JWK. I am using this generated jwk to set there and using the public file at line in lti.setup
staticPath: path.join(__dirname, "public"),
using the following code to setup the lti and register the platform.
while doing the deeplinking with the following code:
, when i submit the form with the deepLinkingMessage i got, i am getting the following error in canvas lms browser:
{
"errors": {
"jwt": [
{
"attribute": "jwt",
"type": "JWT verification failure",
"message": "JWT verification failure"
}
]
}
}
when i verified the deepLinkingMessage in jwt.io, it is saying that it is a "Invalid Signature". I am not sure at which step I am going wrong
The text was updated successfully, but these errors were encountered: