Shopify API - 使用PHP在商店中获取折扣代码

时间:2015-04-28 09:51:22

标签: php shopify

通过Shopify API调用,我可以获取产品数据,但我需要一种方法来获取商店中提供的折扣代码。

我需要PHP中的脚本。有没有人知道如何实现这个目标?

1 个答案:

答案 0 :(得分:0)

也许这些类似的问题可以帮助您入门:

上面提到的前两个链接this project on GitHub。它提供了一个您可以使用的示例:

require 'shopify.php';
$api = new \Shopify\PrivateAPI('username', 'password', 'https://mystore.myshopify.com/admin');

...

$discounts = $api->doRequest('GET', 'discounts.json', $params);
if (isset($discounts->discounts)) {
    $coupons = $discounts->discounts;
    foreach ($coupons as $coupon) {
        print_r($coupon);
    }
}