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
'jwt_issued_time_leeway' => env('APPLE_JWT_ISSUED_TIME_LEEWAY'), // Optional. Set this to add a leeway to your JWT issued_time value. See section below
Sometimes the plugin may throw an exception due to a mismatch in time - See #1354. Use `config('services.apple.jwt_issued_time_leeway')` to 'rewind' the time. Default value is 3 seconds (PT3S).
95
+
96
+
Examples of possible values are PT3S -> 3 seconds, PT1M -> 1 Minute etc ...
97
+
98
+
The thrown exception may look like this:
99
+
```
100
+
[object] (Laravel\\Socialite\\Two\\InvalidStateException(code: 0): The token violates some mandatory constraints, details: - The token was issued in the future at /vendor/socialiteproviders/apple/Provider.php:207) [stacktrace]
101
+
```
102
+
89
103
### Reference
90
104
91
105
-[Apple API Reference](https://developer.apple.com/documentation/signinwithapplerestapi/)
0 commit comments