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 4ef52fc + bfc63ab commit 347e78bCopy full SHA for 347e78b
config/authorizationserver.php
@@ -16,5 +16,7 @@
16
17
'scope' => env('AUTHORIZATION_SERVER_SCOPE'),
18
19
- 'model' => \Illuminate\Foundation\Auth\User::class
+ 'model' => \Illuminate\Foundation\Auth\User::class,
20
+
21
+ 'verify_ssl' => true,
22
];
src/IntrospectClient.php
@@ -30,7 +30,11 @@ protected function getAccessToken(): string
30
protected function getClient(): Client
31
{
32
if ($this->client === null) {
33
- $this->setClient(new Client());
+ $config = [
34
+ 'verify' => (bool) $this->config['verify_ssl'],
35
+ ];
36
37
+ $this->setClient(new Client($config));
38
}
39
40
return $this->client;
0 commit comments