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);
    }