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
{{ message }}
This repository was archived by the owner on Apr 23, 2025. It is now read-only.
I am just starting out with the Facebook API, so I am definitely just in the learning phase. I did find what seems to be a bug:
AccessToken.php > extend()
$expires_at = isset($data['expires_at']) ? $data['expires_at'] : 0;
should be $expires_at = isset($data['expires']) ? $data['expires'] : 0;
If you look at $data that "expires" is the actual name of the key.
But even after I changed this it is still not converting the date correctly for the $token.
It is showing the expires_at date as public 'date' => string '1970-03-01 23:09:46.000000'