final public function Oauth2Client::setClientSecret in Auth0 Single Sign On 8.2
Sets $client_secret.
Parameters
string $client_secret:
Return value
File
- vendor/
auth0/ auth0-php/ src/ API/ Oauth2Client.php, line 625
Class
- Oauth2Client
- This class provides access to Auth0 Platform.
Namespace
Auth0\SDK\APICode
public final function setClientSecret($client_secret) {
$this->client_secret = $client_secret;
return $this;
}