Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added access token expires_at timestamp as a class variable and sets … #10

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/Medium.php
Expand Up @@ -61,7 +61,14 @@ class Medium
* @var string
*/
private $scopes;


/**
* Access token expiry date in unix timestamp.
*
* @var int64
*/
private $expires;

/**
* Initialize.
*
Expand Down Expand Up @@ -127,6 +134,7 @@ public function authenticate($authorizationCode)

$this->accessToken = $tokens->access_token;
$this->refreshToken = $tokens->refresh_token;
$this->expires = $tokens->expires_at;

$this->client->authenticate($this->accessToken);
}
Expand Down