本文整理汇总了PHP中MarketplaceWebServiceProducts_Interface类的典型用法代码示例。如果您正苦于以下问题:PHP MarketplaceWebServiceProducts_Interface类的具体用法?PHP MarketplaceWebServiceProducts_Interface怎么用?PHP MarketplaceWebServiceProducts_Interface使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MarketplaceWebServiceProducts_Interface类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: invokeGetServiceStatus
/**
* Get Service Status Action Sample
* Returns the service status of a particular MWS API section. The operation
* takes no input.
* All API sections within the API are required to implement this operation.
*
* @param MarketplaceWebServiceProducts_Interface $service instance of MarketplaceWebServiceProducts_Interface
* @param mixed $request MarketplaceWebServiceProducts_Model_GetServiceStatus or array of parameters
*/
function invokeGetServiceStatus(MarketplaceWebServiceProducts_Interface $service, $request)
{
try {
$response = $service->getServiceStatus($request);
echo "Service Response\n";
echo "=============================================================================\n";
echo " GetServiceStatusResponse\n";
if ($response->isSetGetServiceStatusResult()) {
echo " GetServiceStatusResult\n";
$getServiceStatusResult = $response->getGetServiceStatusResult();
if ($getServiceStatusResult->isSetStatus()) {
echo " Status\n";
echo " " . $getServiceStatusResult->getStatus() . "\n";
}
if ($getServiceStatusResult->isSetTimestamp()) {
echo " Timestamp\n";
echo " " . $getServiceStatusResult->getTimestamp() . "\n";
}
if ($getServiceStatusResult->isSetMessageId()) {
echo " MessageId\n";
echo " " . $getServiceStatusResult->getMessageId() . "\n";
}
if ($getServiceStatusResult->isSetMessages()) {
echo " Messages\n";
$messages = $getServiceStatusResult->getMessages();
$messageList = $messages->getMessage();
foreach ($messageList as $message) {
echo " Message\n";
if ($message->isSetLocale()) {
echo " Locale\n";
echo " " . $message->getLocale() . "\n";
}
if ($message->isSetText()) {
echo " Text\n";
echo " " . $message->getText() . "\n";
}
}
}
}
if ($response->isSetResponseMetadata()) {
echo " ResponseMetadata\n";
$responseMetadata = $response->getResponseMetadata();
if ($responseMetadata->isSetRequestId()) {
echo " RequestId\n";
echo " " . $responseMetadata->getRequestId() . "\n";
}
}
echo " ResponseHeaderMetadata: " . $response->getResponseHeaderMetadata() . "\n";
} catch (MarketplaceWebServiceProducts_Exception $ex) {
echo "Caught Exception: " . $ex->getMessage() . "\n";
echo "Response Status Code: " . $ex->getStatusCode() . "\n";
echo "Error Code: " . $ex->getErrorCode() . "\n";
echo "Error Type: " . $ex->getErrorType() . "\n";
echo "Request ID: " . $ex->getRequestId() . "\n";
echo "XML: " . $ex->getXML() . "\n";
echo "ResponseHeaderMetadata: " . $ex->getResponseHeaderMetadata() . "\n";
}
}
开发者ID:liubo2055,项目名称:amazon-mws-sdk,代码行数:67,代码来源:GetServiceStatusSample.php
示例2: invokeGetMatchingProductForId
function invokeGetMatchingProductForId(MarketplaceWebServiceProducts_Interface $service, $request)
{
try {
$response = $service->GetMatchingProductForId($request);
$dom = new DOMDocument();
$dom->loadXML($response->toXML());
$arrResult = xml_to_array($dom);
return $arrResult;
} catch (MarketplaceWebServiceProducts_Exception $ex) {
echo "Caught Exception: " . $ex->getMessage() . "\n";
echo "Response Status Code: " . $ex->getStatusCode() . "\n";
echo "Error Code: " . $ex->getErrorCode() . "\n";
echo "Error Type: " . $ex->getErrorType() . "\n";
echo "Request ID: " . $ex->getRequestId() . "\n";
echo "XML: " . $ex->getXML() . "\n";
echo "ResponseHeaderMetadata: " . $ex->getResponseHeaderMetadata() . "\n";
}
}
开发者ID:Alex--Jin,项目名称:shopify_private_fillz,代码行数:18,代码来源:mws_lookup.php
示例3: invokeGetProductCategoriesForASIN
/**
* Get Product Categories For ASIN Action Sample
* Gets categories information for a product identified by
* the MarketplaceId and ASIN.
*
* @param MarketplaceWebServiceProducts_Interface $service instance of MarketplaceWebServiceProducts_Interface
* @param mixed $request MarketplaceWebServiceProducts_Model_GetProductCategoriesForASIN or array of parameters
*/
function invokeGetProductCategoriesForASIN(MarketplaceWebServiceProducts_Interface $service, $request)
{
try {
$response = $service->getProductCategoriesForASIN($request);
echo "Service Response\n";
echo "=============================================================================\n";
echo " GetProductCategoriesForASINResponse\n";
if ($response->isSetGetProductCategoriesForASINResult()) {
echo " GetProductCategoriesForASINResult\n";
$getProductCategoriesForASINResult = $response->getGetProductCategoriesForASINResult();
$selfList = $getProductCategoriesForASINResult->getSelf();
foreach ($selfList as $self) {
echo " Self\n";
if ($self->isSetProductCategoryId()) {
echo " ProductCategoryId\n";
echo " " . $self->getProductCategoryId() . "\n";
}
if ($self->isSetProductCategoryName()) {
echo " ProductCategoryName\n";
echo " " . $self->getProductCategoryName() . "\n";
}
}
}
if ($response->isSetResponseMetadata()) {
echo " ResponseMetadata\n";
$responseMetadata = $response->getResponseMetadata();
if ($responseMetadata->isSetRequestId()) {
echo " RequestId\n";
echo " " . $responseMetadata->getRequestId() . "\n";
}
}
echo " ResponseHeaderMetadata: " . $response->getResponseHeaderMetadata() . "\n";
} catch (MarketplaceWebServiceProducts_Exception $ex) {
echo "Caught Exception: " . $ex->getMessage() . "\n";
echo "Response Status Code: " . $ex->getStatusCode() . "\n";
echo "Error Code: " . $ex->getErrorCode() . "\n";
echo "Error Type: " . $ex->getErrorType() . "\n";
echo "Request ID: " . $ex->getRequestId() . "\n";
echo "XML: " . $ex->getXML() . "\n";
echo "ResponseHeaderMetadata: " . $ex->getResponseHeaderMetadata() . "\n";
}
}
开发者ID:liubo2055,项目名称:amazon-mws-sdk,代码行数:50,代码来源:GetProductCategoriesForASINSample.php
示例4: invokeGetServiceStatus
/**
* Get Get Service Status 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_GetServiceStatus or array of parameters
*/
function invokeGetServiceStatus(MarketplaceWebServiceProducts_Interface $service, $request)
{
try {
$response = $service->GetServiceStatus($request);
echo "Service Response\n";
echo "=============================================================================\n";
$dom = new DOMDocument();
$dom->loadXML($response->toXML());
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
echo $dom->saveXML();
echo "ResponseHeaderMetadata: " . $response->getResponseHeaderMetadata() . "\n";
} catch (MarketplaceWebServiceProducts_Exception $ex) {
echo "Caught Exception: " . $ex->getMessage() . "\n";
echo "Response Status Code: " . $ex->getStatusCode() . "\n";
echo "Error Code: " . $ex->getErrorCode() . "\n";
echo "Error Type: " . $ex->getErrorType() . "\n";
echo "Request ID: " . $ex->getRequestId() . "\n";
echo "XML: " . $ex->getXML() . "\n";
echo "ResponseHeaderMetadata: " . $ex->getResponseHeaderMetadata() . "\n";
}
}
开发者ID:aivanouski,项目名称:amazon-mws-products,代码行数:30,代码来源:GetServiceStatusSample.php
示例5: invokeListMatchingProducts
/**
* List Matching Products Action Sample
* ListMatchingProducts can be used to
* find products that match the given criteria.
*
* @param MarketplaceWebServiceProducts_Interface $service instance of MarketplaceWebServiceProducts_Interface
* @param mixed $request MarketplaceWebServiceProducts_Model_ListMatchingProducts or array of parameters
*/
function invokeListMatchingProducts(MarketplaceWebServiceProducts_Interface $service, $request)
{
try {
$response = $service->listMatchingProducts($request);
echo "Service Response\n";
echo "=============================================================================\n";
echo " ListMatchingProductsResponse\n";
if ($response->isSetListMatchingProductsResult()) {
echo " ListMatchingProductsResult\n";
$listMatchingProductsResult = $response->getListMatchingProductsResult();
if ($listMatchingProductsResult->isSetProducts()) {
echo " Products\n";
$products = $listMatchingProductsResult->getProducts();
$productList = $products->getProduct();
foreach ($productList as $product) {
echo " Product\n";
if ($product->isSetIdentifiers()) {
echo " Identifiers\n";
$identifiers = $product->getIdentifiers();
if ($identifiers->isSetMarketplaceASIN()) {
echo " MarketplaceASIN\n";
$marketplaceASIN = $identifiers->getMarketplaceASIN();
if ($marketplaceASIN->isSetMarketplaceId()) {
echo " MarketplaceId\n";
echo " " . $marketplaceASIN->getMarketplaceId() . "\n";
}
if ($marketplaceASIN->isSetASIN()) {
echo " ASIN\n";
echo " " . $marketplaceASIN->getASIN() . "\n";
}
}
if ($identifiers->isSetSKUIdentifier()) {
echo " SKUIdentifier\n";
$SKUIdentifier = $identifiers->getSKUIdentifier();
if ($SKUIdentifier->isSetMarketplaceId()) {
echo " MarketplaceId\n";
echo " " . $SKUIdentifier->getMarketplaceId() . "\n";
}
if ($SKUIdentifier->isSetSellerId()) {
echo " SellerId\n";
echo " " . $SKUIdentifier->getSellerId() . "\n";
}
if ($SKUIdentifier->isSetSellerSKU()) {
echo " SellerSKU\n";
echo " " . $SKUIdentifier->getSellerSKU() . "\n";
}
}
}
if ($product->isSetAttributeSets()) {
echo " AttributeSets\n";
$attributeSets = $product->getAttributeSets();
if ($attributeSets->isSetAny()) {
$nodeList = $attributeSets->getAny();
echo prettyPrint($nodeList);
}
}
if ($product->isSetRelationships()) {
echo " Relationships\n";
$relationships = $product->getRelationships();
if ($relationships->isSetAny()) {
$nodeList = $relationships->getAny();
echo prettyPrint($nodeList);
}
}
if ($product->isSetCompetitivePricing()) {
echo " CompetitivePricing\n";
$competitivePricing = $product->getCompetitivePricing();
if ($competitivePricing->isSetCompetitivePrices()) {
echo " CompetitivePrices\n";
$competitivePrices = $competitivePricing->getCompetitivePrices();
$competitivePriceList = $competitivePrices->getCompetitivePrice();
foreach ($competitivePriceList as $competitivePrice) {
echo " CompetitivePrice\n";
if ($competitivePrice->isSetCondition()) {
echo " condition";
echo "\n";
echo " " . $competitivePrice->getCondition() . "\n";
}
if ($competitivePrice->isSetSubcondition()) {
echo " subcondition";
echo "\n";
echo " " . $competitivePrice->getSubcondition() . "\n";
}
if ($competitivePrice->isSetBelongsToRequester()) {
echo " belongsToRequester";
echo "\n";
echo " " . $competitivePrice->getBelongsToRequester() . "\n";
}
if ($competitivePrice->isSetCompetitivePriceId()) {
echo " CompetitivePriceId\n";
echo " " . $competitivePrice->getCompetitivePriceId() . "\n";
}
//.........这里部分代码省略.........
开发者ID:liubo2055,项目名称:amazon-mws-sdk,代码行数:101,代码来源:ListMatchingProductsSample.php
注:本文中的MarketplaceWebServiceProducts_Interface类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论