dwyl/learn-json-web-tokens

Issue with default expiry time

開放

#43 建立於 2015年8月3日

 (6 則留言) (0 個反應) (0 位負責人)JavaScript (267 個分叉)batch import
bughelp wanted

倉庫指標

星標
 (4,175 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

The intention is to expire in 7 days, but the code doesn't provide a number thats 7 days ahead of now...far from it! https://github.com/dwyl/learn-json-web-tokens/blob/master/example/lib/helpers.js#L39

$ node
> var x = Math.floor(new Date().getTime()/1000) + 7*24*60*60
undefined
> new Date(x)
Sat Jan 17 1970 15:46:41 GMT+0000 (BST)
> 

I used this instead:

Date.now() + (1000 * 60 * 60 * 24 * 7)

貢獻者指南