We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3989a6d commit 0b99e72Copy full SHA for 0b99e72
src/Plugin.php
@@ -84,7 +84,8 @@ public function getSdk(): OpenIDConnectClient
84
$clientId = $this->getOptionString('client', 'id');
85
$clientSecret = $this->getOptionString('client', 'secret');
86
$this->sdk = new OpenIDConnectClient($endpoint, $clientId, $clientSecret);
87
- $this->sdk->setHttpUpgradeInsecureRequests(false);
+ // Uncomment for local testing
88
+ // $this->sdk->setHttpUpgradeInsecureRequests(false);
89
$this->sdk->addScope(['email', 'profile', 'groups']);
90
}
91
0 commit comments