When I do this in the Facebook JavaScript API:
FB.getLoginStatus(function(response) {
console.log(response.authResponse.expiresIn);
});
I get back an integer like 5184000.
When is that? What are the units? What's the epoch? It's clearly not in milliseconds since 1970. How do I convert that to a Date in JavaScript?
When I do this in the Facebook JavaScript API:
FB.getLoginStatus(function(response) {
console.log(response.authResponse.expiresIn);
});
I get back an integer like 5184000.
When is that? What are the units? What's the epoch? It's clearly not in milliseconds since 1970. How do I convert that to a Date in JavaScript?
Share Improve this question asked May 28, 2012 at 5:50 Dan FabulichDan Fabulich 39.6k42 gold badges145 silver badges184 bronze badges2 Answers
Reset to default 9It is the time of expiry in seconds. It is equivalent to 60 days.
In order to convert to a date read here.
According to the doc, some years later, it may have changed:
expiresIn
A UNIX time stamp when the token expires. Once the token expires, the person will need to login again.
https://developers.facebook./docs/facebook-login/web/
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743701305a4492618.html
评论列表(0条)