ApaiIO\Configuration\ConfigurationInterface::getSecretKey PHP Method

getSecretKey() public method

Gets the secretkey
public getSecretKey ( ) : string
return string
    public function getSecretKey();

Usage Example

コード例 #1
0
ファイル: Request.php プロジェクト: finedesignz/apai-io2
 /**
  * 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