ApaiIO\Configuration\ConfigurationInterface::getAccessKey PHP Method

getAccessKey() public method

Gets the accesskey
public getAccessKey ( ) : string
return string
    public function getAccessKey();

Usage Example

コード例 #1
0
ファイル: Request.php プロジェクト: finedesignz/apai-io2
 /**
  * Prepares the parameters for the request
  *
  * @param OperationInterface $operation
  *
  * @return array
  */
 protected function prepareRequestParams(OperationInterface $operation)
 {
     $baseRequestParams = array('Service' => 'AWSECommerceService', 'AWSAccessKeyId' => $this->configuration->getAccessKey(), 'AssociateTag' => $this->configuration->getAssociateTag(), 'Operation' => $operation->getName(), 'Version' => '2011-08-01', 'Timestamp' => Util::getTimeStamp());
     $operationParams = $operation->getOperationParameter();
     foreach ($operationParams as $key => $value) {
         if (true === is_array($value)) {
             $operationParams[$key] = implode(',', $value);
         }
     }
     $fullParameterList = array_merge($baseRequestParams, $operationParams);
     ksort($fullParameterList);
     return $fullParameterList;
 }
All Usage Examples Of ApaiIO\Configuration\ConfigurationInterface::getAccessKey