Example #1
0
 /**
  * Get Matching Product
  * GetMatchingProduct will return the details (attributes) for the
  * given ASIN.
  *
  * @param mixed $request array of parameters for MarketplaceWebServiceProducts_Model_GetMatchingProduct request or MarketplaceWebServiceProducts_Model_GetMatchingProduct object itself
  * @see MarketplaceWebServiceProducts_Model_GetMatchingProductRequest
  * @return MarketplaceWebServiceProducts_Model_GetMatchingProductResponse
  *
  * @throws MarketplaceWebServiceProducts_Exception
  */
 public function getMatchingProduct($request)
 {
     if (!$request instanceof MarketplaceWebServiceProducts_Model_GetMatchingProductRequest) {
         require_once dirname(__FILE__) . '/Model/GetMatchingProductRequest.php';
         $request = new MarketplaceWebServiceProducts_Model_GetMatchingProductRequest($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'GetMatchingProduct';
     $httpResponse = $this->_invoke($parameters);
     require_once dirname(__FILE__) . '/Model/GetMatchingProductResponse.php';
     $response = MarketplaceWebServiceProducts_Model_GetMatchingProductResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }
 * Uncomment to try out Mock Service that simulates MarketplaceWebServiceProducts
 * responses without calling MarketplaceWebServiceProducts service.
 *
 * Responses are loaded from local XML files. You can tweak XML files to
 * experiment with various outputs during development
 *
 * XML files available under MarketplaceWebServiceProducts/Mock tree
 *
 ***********************************************************************/
// $service = new MarketplaceWebServiceProducts_Mock();
/************************************************************************
 * Setup request parameters and uncomment invoke to try out
 * sample for Get Matching Product Action
 ***********************************************************************/
// @TODO: set request. Action can be passed as MarketplaceWebServiceProducts_Model_GetMatchingProduct
$request = new MarketplaceWebServiceProducts_Model_GetMatchingProductRequest();
$request->setSellerId(MERCHANT_ID);
// object or array of parameters
invokeGetMatchingProduct($service, $request);
/**
 * Get Get Matching Product Action Sample
 * Gets competitive pricing and related information for a product identified by
 * the MarketplaceId and ASIN.
 *
 * @param MarketplaceWebServiceProducts_Interface $service instance of MarketplaceWebServiceProducts_Interface
 * @param mixed $request MarketplaceWebServiceProducts_Model_GetMatchingProduct or array of parameters
 */
function invokeGetMatchingProduct(MarketplaceWebServiceProducts_Interface $service, $request)
{
    try {
        $response = $service->GetMatchingProduct($request);