in Education by
I am using module jsonwebtoken 8.4.0 in a nodejs 10.2.0 app. A JWT token is generated on https://jwt.io for test purpose: Here in payload, the exp is expiration date and the string is correctly formatted in JSON. Then the JWT token on the left is submitted to the app for verification. Here is the line of code (as 29:33 below) which fails: const decoded = jwt.verify(jwt_token, process.env.jwtPrivateKey); The error is: { JsonWebTokenError: invalid exp value at C:\d\code\js\emps_bbone\node_modules\jsonwebtoken\verify.js:149:21 at getSecret (C:\d\code\js\emps_bbone\node_modules\jsonwebtoken\verify.js:90:14) at Object.module.exports [as verify] (C:\d\code\js\emps_bbone\node_modules\jsonwebtoken\verify.js:94:10) at module.exports (C:\d\code\js\emps_bbone\middleware\auth_userinfo.js:29:33) The error is complaining about the invalid exp value. Also obviously there is a valid jwt token generated with the payload. jsonwebtoken decode only need to return the original payload exp, which is a string, why it failed? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
You need to provide exp as NumericDate. Apparently you cannot use the date format that you provided. See documentation: https://www.npmjs.com/package/jsonwebtoken#token-expiration-exp-claim See specification: https://www.rfc-editor.org/rfc/rfc7519#section-4.1.4

Related questions

0 votes
    I am trying to upload image by converting image to base64 format. And i am getting below error. Error ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
0 votes
    I've been putzing with trying to call the jobs.Insert bigquery rest api endpoint with node (the jobs. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    p(s=1|x) = 1/(1+exp(-x/T))) ,where s' is the output given the activation x' is a? (a) ... c) stochastic network (d) none of the mentioned Please answer the above question....
asked Aug 30, 2022 in Education by JackTerrance
0 votes
    I have a query like this SELECT member_Id , PERIOD_DIFF( DATE_FORMAT(now(),'%Y%m'), DATE_FORMAT( ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 4, 2022 in Education by JackTerrance
0 votes
    I'm writing a script for a user that concatenates several PDF files and appends tabular data as a text ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I'm trying to write custom jwt login view for django rest api authentication. But it doesn't work, ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    I am learning about OAuth2 and OpenID Connect by experimenting with ASP.NET Core and IdentityServer4. So far ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 21, 2022 in Education by JackTerrance
0 votes
    I need to create JWT token authentication, but I don't know how, could you explain me how to do ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    What is the full form of JWT?...
asked Mar 20, 2021 in Technology by JackTerrance
0 votes
    I get "Login failed error" with the Facebook Android SDK while running on the device. I have done ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 21, 2022 in Education by JackTerrance
0 votes
    Which of the below is invalid identifier with the main method? (a) public (b) static (c) private ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    I have a strange problem. I'm executing insert using prepared statement like this: try (Connection ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I have installed Docker Desktop for windows Docker version 18.09.2, build 6247962, and I'm not able ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    I'm trying to implement continuous integration and continuous deployment to my DEV Azure App Service. I'm ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    I'm getting into user scripting with tampermonkey and can't get through this error, any help would be ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
...