ApaiIO\Request\GuzzleRequest::buildSignature PHP Метод

buildSignature() защищенный метод

Calculates the signature for the request
protected buildSignature ( array $params, string $country, string $secret ) : string
$params array
$country string
$secret string
Результат string
    protected function buildSignature(array $params, $country, $secret)
    {
        return Util::buildSignature(sprintf("GET\nwebservices.amazon.%s\n/onca/xml\n%s", $country, implode('&', $params)), $secret);
    }