We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d47849e + 914cc3b commit 486ee85Copy full SHA for 486ee85
src/OAuth/OAuth2/Service/Facebook.php
@@ -169,7 +169,7 @@ protected function parseAccessTokenResponse($responseBody)
169
170
$token = new StdOAuth2Token();
171
$token->setAccessToken($data['access_token']);
172
-
+
173
if (isset($data['expires'])) {
174
$token->setLifeTime($data['expires']);
175
}
@@ -198,6 +198,14 @@ public function getDialogUri($dialogPath, array $parameters)
198
return new Uri($baseUrl . '?' . $query);
199
200
201
+ /**
202
+ * {@inheritdoc}
203
+ */
204
+ protected function getApiVersionString()
205
+ {
206
+ return empty($this->apiVersion) ? '' : '/v' . $this->apiVersion;
207
+ }
208
209
/**
210
* {@inheritdoc}
211
*/
0 commit comments