ApaiIO\Configuration\ConfigurationInterface::getSecretKey PHP Метод

getSecretKey() публичный Метод

Gets the secretkey
public getSecretKey ( ) : string
Результат string
    public function getSecretKey();

Usage Example

Пример #1
0
 /**
  * Calculates the signature for the request
  *
  * @param array $params
  *
  * @return string
  */
 protected function buildSignature(array $params)
 {
     $template = "GET\nwebservices.amazon.%s\n/onca/xml\n%s";
     return Util::buildSignature(sprintf($template, $this->configuration->getCountry(), implode('&', $params)), $this->configuration->getSecretKey());
 }
All Usage Examples Of ApaiIO\Configuration\ConfigurationInterface::getSecretKey