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.
1 parent 9980676 commit bb90330Copy full SHA for bb90330
src/Google/AccessToken/Verify.php
@@ -16,6 +16,7 @@
16
* limitations under the License.
17
*/
18
19
+use Firebase\JWT\ExpiredException as ExpiredExceptionV3;
20
use Google\Auth\CacheInterface;
21
use GuzzleHttp\Client;
22
use GuzzleHttp\ClientInterface;
@@ -107,6 +108,8 @@ public function verifyIdToken($idToken, $audience = null)
107
108
return (array) $payload;
109
} catch (ExpiredException $e) {
110
return false;
111
+ } catch (ExpiredExceptionV3 $e) {
112
+ return false;
113
} catch (DomainException $e) {
114
// continue
115
}
0 commit comments