首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >Amazon API & Woocommerce桥

Amazon API & Woocommerce桥
EN

Stack Overflow用户
提问于 2013-08-04 21:34:12
回答 1查看 903关注 0票数 0

我试图让WooCommerce从Amazon API那里获取价格,但我失败得很厉害。我的PHP很糟糕,但这是我到目前为止所学到的。我不能让它工作。

我正在使用我在网上找到的一个模板,从Amazon API调用。以下是这些文件:

代码语言:javascript
运行
AI代码解释
复制
<?php

/**
 * Class to access Amazons Product Advertising API
 * @author Sameer Borate
 * @link http://www.codediesel.com
 * @version 1.0
 * All requests are not implemented here. You can easily
 * implement the others from the ones given below.
 */


/*
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/

require_once 'amazon_product_api_signed_request.php';

class AmazonProductAPI
{
    /**
     * Your Amazon Access Key Id
     * @access private
     * @var string
     */
    private $public_key;

    /**
     * Your Amazon Secret Access Key
     * @access private
     * @var string
     */
    private $private_key;

    /**
     * Your Amazon Associate Tag
     * Now required, effective from 25th Oct. 2011
     * @access private
     * @var string
     */
    private $associate_tag;

    private $local_site;

    /**
     * Constants for product types
     * @access public
     * @var string
     */

    /*
        Only three categories are listed here. 
        More categories can be found here:
        http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/APPNDX_SearchIndexValues.html
    */

    const MUSIC = "Music";
    const DVD   = "DVD";
    const GAMES = "VideoGames";


    public function __construct($public, $private, $local_site, $associate_tag){

        $this->public_key = $public;
        $this->private_key = $private;
        $this->local_site = $local_site;
        $this->associate_tag = $associate_tag;

    }

    public function get_local(){
        return $this->local_site;
    }

    /**
     * Check if the xml received from Amazon is valid
     * 
     * @param mixed $response xml response to check
     * @return bool false if the xml is invalid
     * @return mixed the xml response if it is valid
     * @return exception if we could not connect to Amazon
     */
    private function verifyXmlResponse($response)
    {
        if ($response === False)
        {
            throw new Exception("Could not connect to Amazon");
        }
        else
        {
            if (isset($response->Items->Item->ItemAttributes->Title))
            {
                return ($response);
            }
            else
            {
                throw new Exception("Invalid xml response.");
            }
        }
    }


    /**
     * Query Amazon with the issued parameters
     * 
     * @param array $parameters parameters to query around
     * @return simpleXmlObject xml query response
     */
    public function queryAmazon($parameters)
    {
        return amazon_product_api_signed_request($this->local_site, $parameters, $this->public_key, $this->private_key, $this->associate_tag);
    }


    /**
     * Return details of products searched by various types
     * 
     * @param string $search search term
     * @param string $category search category         
     * @param string $searchType type of search
     * @return mixed simpleXML object
     */
    public function searchProducts($search, $category, $searchType = "UPC")
    {
        $allowedTypes = array("UPC", "TITLE", "ARTIST", "KEYWORD");
        $allowedCategories = array("Music", "DVD", "VideoGames");

        switch($searchType) 
        {
            case "UPC" :    $parameters = array("Operation"     => "ItemLookup",
                                                "ItemId"        => $search,
                                                "SearchIndex"   => $category,
                                                "IdType"        => "UPC",
                                                "ResponseGroup" => "Medium");
                            break;

            case "TITLE" :  $parameters = array("Operation"     => "ItemSearch",
                                                "Title"         => $search,
                                                "SearchIndex"   => $category,
                                                "ResponseGroup" => "Medium");
                            break;

        }

        $xml_response = $this->queryAmazon($parameters);

        return $this->verifyXmlResponse($xml_response);

    }




    public function getBrowseNodeProducts($category, $browseNode = 1000, $searchType = "UPC")
    {
        $allowedTypes = array("UPC", "TITLE", "ARTIST", "KEYWORD");
        $allowedCategories = array("Music", "DVD", "VideoGames");

         $parameters = array(
                            "Operation"     => "ItemSearch",
                            "BrowseNode"    => $browseNode,
                            "SearchIndex"   => $category,
                            "ResponseGroup" => "Medium,Reviews"
                            );

        $xml_response = $this->queryAmazon($parameters);

        return $this->verifyXmlResponse($xml_response);

    }


    /**
     * Return details of a product searched by UPC
     * 
     * @param int $upc_code UPC code of the product to search
     * @param string $product_type type of the product
     * @return mixed simpleXML object
     */
    public function getItemByUpc($upc_code, $product_type)
    {
        $parameters = array("Operation"     => "ItemLookup",
                            "ItemId"        => $upc_code,
                            "SearchIndex"   => $product_type,
                            "IdType"        => "UPC",
                            "ResponseGroup" => "Medium");

        $xml_response = $this->queryAmazon($parameters);

        return $this->verifyXmlResponse($xml_response);

    }


    /**
     * Return details of a product searched by ASIN
     * 
     * @param int $asin_code ASIN code of the product to search
     * @return mixed simpleXML object
     */
    public function getItemByAsin($asin_code)
    {
        $parameters = array("Operation"     => "ItemLookup",
                            "ItemId"        => $asin_code,
                            "ResponseGroup" => "Medium");

        $xml_response = $this->queryAmazon($parameters);

        return $this->verifyXmlResponse($xml_response);
    }


    /**
     * Return details of a product searched by keyword
     * 
     * @param string $keyword keyword to search
     * @param string $product_type type of the product
     * @return mixed simpleXML object
     */
    public function getItemByKeyword($keyword, $product_type)
    {
        $parameters = array("Operation"   => "ItemSearch",
                            "Keywords"    => $keyword,
                            "SearchIndex" => $product_type);

        $xml_response = $this->queryAmazon($parameters);

        return $this->verifyXmlResponse($xml_response);
    }

}

?>

下面是访问我相信的API的文件:

代码语言:javascript
运行
AI代码解释
复制
<?php

function      amazon_product_api_signed_request($region,$params,$public_key,$private_key,$associate_tag)
{

if($region == 'jp'){
    $host = "ecs.amazonaws.".$region;
}else{
    $host = "webservices.amazon.".$region;
}

$method = "GET";
$uri = "/onca/xml";


$params["Service"]          = "AWSECommerceService";
$params["AWSAccessKeyId"]   = $public_key;
$params["AssociateTag"]     = $associate_tag;
$params["Timestamp"]        = gmdate("Y-m-d\TH:i:s\Z");
$params["Version"]          = "2011-08-01";

/* The params need to be sorted by the key, as Amazon does this at
  their end and then generates the hash of the same. If the params
  are not in order then the generated hash will be different thus
  failing the authetication process.
*/
ksort($params);

$canonicalized_query = array();

foreach ($params as $param=>$value)
{
    $param = str_replace("%7E", "~", rawurlencode($param));
    $value = str_replace("%7E", "~", rawurlencode($value));
    $canonicalized_query[] = $param."=".$value;
}

$canonicalized_query = implode("&", $canonicalized_query);

$string_to_sign = $method."\n".$host."\n".$uri."\n".$canonicalized_query;

/* calculate the signature using HMAC with SHA256 and base64-encoding.
   The 'hash_hmac' function is only available from PHP 5 >= 5.1.2.
*/
$signature = base64_encode(hash_hmac("sha256", $string_to_sign, $private_key, True));

/* encode the signature for the request */
$signature = str_replace("%7E", "~", rawurlencode($signature));

/* create request */
$request = "http://".$host.$uri."?".$canonicalized_query."&Signature=".$signature;

/* I prefer using CURL */
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$request);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

$xml_response = curl_exec($ch);

/* If cURL doesn't work for you, then use the 'file_get_contents'
   function as given below.
*/

if ($xml_response === False)
{
    return False;
}
else
{
    /* parse XML */
    $parsed_xml = @simplexml_load_string($xml_response);
    return ($parsed_xml === False) ? False : $parsed_xml;
}
}
?>

这是一个WooCommerce函数,我相信它就是代价:

代码语言:javascript
运行
AI代码解释
复制
function woocommerce_get_formatted_product_name( $product ) {
if ( ! $product || ! is_object( $product ) )
    return;

if ( $product->get_sku() )
    $identifier = $product->get_sku();
elseif ( $product->is_type( 'variation' ) )
    $identifier = '#' . $product->variation_id;
else
    $identifier = '#' . $product->id;

if ( $product->is_type( 'variation' ) ) {
    $attributes = $product->get_variation_attributes();
    $extra_data = ' &ndash; ' . implode( ', ', $attributes ) . ' &ndash; ' .    woocommerce_price( $product->get_price() );
} else {
    $extra_data = '';
}

return sprintf( __( '%s &ndash; %s%s', 'woocommerce' ), $identifier, $product- >get_title(), $extra_data );
}

这是我添加到functions.php文件中的内容,希望将所有内容结合在一起,遗憾的是,它不起作用:(

代码语言:javascript
运行
AI代码解释
复制
require_once('amazon_product_api_class.php');

$public = 'my code goes here'; //amazon public key here
$private = 'my code goes here'; //amazon private/secret key here
$site = 'com'; //amazon region
$affiliate_id = 'my affiliate goes here(removed for security reasons)'; //amazon affiliate id



$amazon = $amazon = new AmazonProductAPI($public, $private, $site, $affiliate_id);

$single = array(
'Operation' => 'ItemLookup',
'ItemId' => 'B0006N149M',
'ResponseGroup' => 'Reviews,Medium'
);


function return_custom_price($price, $product) { 

amazon_item_info(); 

$result =   $amazon->queryAmazon($single);
$single_products = $result->Items->Item;

foreach($single_products as $si){

$item_url = $si->DetailPageURL; //get its amazon url
$img = $si->MediumImage->URL; //get the image url

echo "<li>";
echo "<img src='$img'/>";
echo "<a href='$item_url'>". $si->ASIN . "</a>";
echo $si->ItemAttributes->ListPrice->FormattedPrice; //item price
echo "</li>";       
}

}      
add_filter('woocommerce_get_price', 'return_custom_price', $product, 2);   
EN

回答 1

Stack Overflow用户

发布于 2013-12-07 14:28:00

为什么不试试像Zapier这样的东西呢

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18047796

复制
相关文章
Amazon对接选EDI还是API
亚马逊为供应商提供EDI与API方式来进行数据的对接,供应商可通过上述两种方式与亚马逊平台进行集成,从而实现点对点自动接收订单,回传发票、ASN。
知行软件EDI
2022/05/25
7290
Amazon对接选EDI还是API
8个woocommerce支付网关插件推荐
当然您以前听说过WooCommerce吗?这是用WordPress建立在线商店的最简单方法之一。WooCommerce允许网站所有者添加产品,数字商品,甚至订​​阅(取决于您已安装的WooCommerce扩展)。但是,对于WooCommerce包含的所有强大功能,仅内置了一些默认付款选项。幸运的是,您可以添加大量免费的高级WooCommerce付款网关插件,为客户提供新的结帐选项。
Hoan外贸建站
2020/12/03
6.9K0
Serverless 时代,这才是Web应用开发正确的打开方式 | Q推荐
如同 iPhone 当年颠覆了诺基亚,Serverless 的出现也带来了一种全新的、颠覆式的云开发架构模式。在 Serverless 出现前,开发者们根本无法想象几分钟就能快速部署一个 Web 应用上线。近日,亚马逊云科技 Tech Talk 特别邀请了资深无服务器技术专家孙华带来分享《 如何高效、极简构造无服务器 Web 应用》。孙华以 Amazon Lambda 的视角介绍了无服务器 Web 应用的构造方式,并讲述了如何利用最新发布的 Lambda Function URLs 和 Lambda Adapter 进一步简化无服务器 Web 应用的开发和调试并且实现 Web 应用在 Lambda,Fargate 和 EC2 等计算平台之间平滑迁移。
深度学习与Python
2022/06/13
3.6K0
Serverless 时代,这才是Web应用开发正确的打开方式 | Q推荐
Woocommerce Trends 2020
Top Woocommerce Trends To Follow In 2020. If you have an online store and missed out on the last annual Woosesh virtual conference held a few months ago, then you’re short of information in updating yourself with the latest trends of Woocommerce.
用户4822892
2019/12/10
6030
Woocommerce Trends 2020
说说 WooCommerce 插件
玩儿过WordPress的估计都听说过WooCommerce插件吧?明月其实很早的时候就接触和体验过WooCommerce插件了,严格意义上来说WooCommerce应该是WordPress平台下开源电子商务解决方案才比较确切些,也就是说WordPress+WooCommerce就是一套电子商务解决方案了,也就是我们俗称的“在线商城”。
明月登楼的博客
2021/04/30
1.9K0
说说 WooCommerce 插件
Amazon DynamoDB 工作原理、API和数据类型介绍
DynamoDB 是 AWS 独有的完全托管的 NoSQL Database。它的思想来源于 Amazon 2007 年发表的一篇论文:Dynamo: Amazon’s Highly Available Key-value Store。在这篇论文里,Amazon 介绍了如何使用 Commodity Hardware 来打造高可用、高弹性的数据存储。想要理解 DynamoDB,首先要理解 Consistent Hashing。Consistent Hashing 的原理如下图所示:
goodspeed
2020/12/25
6K0
如何与亚马逊Amazon供应商平台集成?——EDI or API
亚马逊Amazon供应商平台支持通过EDI和API两种方式进行集成,不禁开始思考到底该选择哪种方式来集成?
知行软件EDI
2021/12/13
1.3K0
如何与亚马逊Amazon供应商平台集成?——EDI or API
woocommerce如何隐藏SKU
  有时我们不想在woocommerce网站前台显示SKU,如下图所示,因为sku一多整个排版可能会乱,那么要如何隐藏sku呢?随ytkah一起来看看
ytkah
2019/12/20
2.2K0
woocommerce如何隐藏SKU
Amazon DynamoDB
DynamoDB 是Amazon最新发布的NoSQL产品,那什么是DynamoDB呢?
阳光岛主
2019/02/19
3.1K0
禁用woocommerce默认样式stylesheet
  用woocommerce建站有时我们不想要它的默认样式,那要如何屏蔽呢?当然ytkah是不会告诉你去注释删除css代码的,默认情况下WooCommerce会嵌入3个样式表,我们可以通过在当前主题的function.php文件中添加以下代码禁用它们,
ytkah
2020/02/13
1.6K0
南桥和北桥
现代 PC 机主板主要使用 2 个超大规模芯片构成的芯片组或芯片集(Chipsets)组成:北桥(Northbridge)芯片和南桥(Southbridge)芯片。北桥芯片用于与 CPU、内存和 AGP 视频接口,这些接口具有很高的传输速率。北桥芯片还起着存储器控制作用,因此Intel 把该芯片标号为 MCH(Memory Controller Hub)芯片。南桥芯片用来管理低、中速的组件,例如,PCI 总线、IDE 硬盘接口、USB 端口等,因此南桥芯片的名称为 ICH(I/O Controller Hub)。之所以用“南、北”桥来分别统称这两个芯片,是由于在 Intel 公司公布的典型 PC 机主板上,它们分别位于主版的下端和上端(即地图上的南部和北部)位置,并起着与 CPU 进行通道桥接的作用。 --by《Linux内核完全注释》
zy010101
2020/08/20
1.7K0
woocommerce模板制作简易教程
  woocommerce是wordpress里比较好用的电商解决方案,但是制作woocommerce模板相对比较复杂,如果想用woocommerce来建一个展示型的网站,不带下单功能,我们可以很快就能把模板设计出来,下面就跟着ytkah一起来学习吧
ytkah
2019/06/24
2.8K0
woocommerce shortcode短代码调用
WooCommerce配备了很多shortcode短代码(简码),可以直接在post帖子和page页面内插入内容,方便展示产品、分类等。比如直接在文章编辑时直接插入[products],或者在php文
ytkah
2023/03/14
11.4K0
woocommerce shortcode短代码调用
woocommerce如何隐藏/显示product meta
  前面我们说了woocommerce如何隐藏SKU,那如果不想显示产品分类category和标签tag呢?我们知道SKU, Category list 和 Tag list在woocommerce产品页中统称为产品product meta,下图红框所示。1、如果想全部隐藏这些meta很简单,在当前主题function.php文件中加入下面的代码即可
ytkah
2019/12/19
3.4K0
woocommerce根据标题获取相关产品
  我们知道woocommerce的相关文章是根据分类category或标签tag来获取的,能不能实现根据标题来调取相关产品呢?get_posts() 函数可以根据库存、价格、自定义项、搜索条件等不同的标准来显示不同的相关产品,如何操作呢?随ytkah一起来看看
ytkah
2019/12/19
1.6K0
Amazon Aurora 深度探索(三)
serena
2017/08/09
3K0
Amazon Aurora 深度探索(三)
WordPress插件WooCommerce任意文件删除漏洞分析
近期,研究人员在WordPress的权限处理机制中发现了一个安全漏洞,而这个漏洞将允许WordPress插件实现提权。其中一个典型例子就是WooCommerce,该插件是目前最热门的一款电子商务插件,并且拥有400万+的安装量。简而言之,这个漏洞将允许商铺管理员删除目标服务器上的特定文件,并接管管理员帐号。
FB客服
2018/12/24
1.7K0
WooCommerce Elementor Addons – 商品页面编辑器插件
TFProduct是用于Elementor Page Builder的WooCommerce插件,帮助您在页面构建器Elementor中显示WooCommerce产品。 它是最灵活的小部件,可让您以网格,轮播,分页方式显示WooCommerce产品,并加载更多布局。它可以显示编号显示产品,最新产品,特色产品,畅销产品,销售产品,最高评分产品,混合订单产品,类别产品。此外,我们还提供了完全免费的Elementor Themesflat附加组件,以及YouTube窗口小部件。您可以完全创建带有完整的页眉页脚滑块,图像框,轮播框和所有Elementor Free小部件的专业视频网站。
小狐狸说事
2022/12/30
2.2K0
WooCommerce Elementor Addons – 商品页面编辑器插件
Amazon Dynamo系统架构
本文参考了网上众多文章,把 Amazon Dynamo 架构汇总成文,为后续源码分析奠定基础。
罗西的思考
2021/02/04
1.5K0
点击加载更多

相似问题

使用Amazon CDK创建事件桥堆栈

112

Amazon API

21

Amazon事件桥没有触发我的lambda函数

11

Amazon products API for Amazon Instant Video

10

用于Symbian的API桥

10
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
社区富文本编辑器全新改版!诚邀体验~
全新交互,全新视觉,新增快捷键、悬浮工具栏、高亮块等功能并同时优化现有功能,全面提升创作效率和体验
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文