protected function getBasicAuth()
 {
     $userId = $this->config->getClientId();
     $password = $this->config->getClientSecret();
     return "Basic " . base64_encode("{$userId}:{$password}");
 }