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
var now = new Date();
var expires_time = parseInt(facebook_cookie['expires'], 10) * 1000;
if (now.getTime() < expires_time)
{
/*
* The token is expired.
*/
cb();
return ;
}
makes no sense - the cookie is supposed to expire in the future (replace < with >)
this breaks for me with run_example.js
The text was updated successfully, but these errors were encountered:
Hmm, this means that the expires time conversion must be broken, too. Because for me it worked even with this very wrong line of code. Will look into that.
makes no sense - the cookie is supposed to expire in the future (replace < with >)
this breaks for me with run_example.js
The text was updated successfully, but these errors were encountered: