You are here

public function SalesforceAuthProviderPluginBase::getConsumerSecret in Salesforce Suite 8.3

Consumer secret for the connected OAuth app.

Return value

string Consumer secret.

Overrides SalesforceAuthProviderInterface::getConsumerSecret

1 method overrides SalesforceAuthProviderPluginBase::getConsumerSecret()
SalesforceOAuthPlugin::getConsumerSecret in src/Plugin/SalesforceAuthProvider/SalesforceOAuthPlugin.php
Consumer secret for the connected OAuth app.

File

src/SalesforceAuthProviderPluginBase.php, line 166

Class

SalesforceAuthProviderPluginBase
Shared methods for auth providers.

Namespace

Drupal\salesforce

Code

public function getConsumerSecret() {
  return $this->credentials
    ->getConsumerSecret();
}