public function RestClient::getConsumerKey in Salesforce Suite 8.3
Same name in this branch
- 8.3 src/Rest/RestClient.php \Drupal\salesforce\Rest\RestClient::getConsumerKey()
- 8.3 modules/salesforce_encrypt/src/Rest/RestClient.php \Drupal\salesforce_encrypt\Rest\RestClient::getConsumerKey()
Consumer key getter.
Return value
string|null Consumer key.
Overrides RestClientInterface::getConsumerKey
Deprecated
in 8.x-4.0, use \Drupal\salesforce\SalesforceAuthProviderInterface::getConsumerKey instead.
3 calls to RestClient::getConsumerKey()
- RestClient::getConsumerKey in modules/
salesforce_encrypt/ src/ Rest/ RestClient.php - Consumer key getter.
- RestClient::isAuthorized in src/
Rest/ RestClient.php - Determine if this SF instance is fully configured.
- RestClient::refreshToken in src/
Rest/ RestClient.php - Refresh access token based on the refresh token.
1 method overrides RestClient::getConsumerKey()
- RestClient::getConsumerKey in modules/
salesforce_encrypt/ src/ Rest/ RestClient.php - Consumer key getter.
File
- src/
Rest/ RestClient.php, line 391
Class
- RestClient
- Objects, properties, and methods to communicate with the Salesforce REST API.
Namespace
Drupal\salesforce\RestCode
public function getConsumerKey() {
return $this->immutableConfig
->get('consumer_key');
}