我正在使用 Shopify API 开发自定义 Web 应用程序。这里的想法是将该应用程序用作专有店面,并仅向 Shopify API 发出请求。我已经在我的 Shopify 帐户中设置了一个私人应用程序来执行此操作。
我从 api 中提取产品没有问题(使用 /admin/products.json API 端点)。但是我有一段时间尝试使用Ajax API尤其是 /cart/add.js API 端点将产品从我的域添加到购物车。使用我的 REST 客户端时,我得到了正确的 JSON 响应(我正在使用 Google Chrome 扩展 Postman),但我无法在我自己的应用程序中使用它。
在我的应用程序中,我正在向我自己的服务器发送 AJAX 请求,该服务器又使用 curl 调用 API 端点并返回 JSON 响应(以避免跨域问题/必须使用 JSONP)。即使两个 JSON 响应相同,该项目也不会被添加到我的 Web 应用程序的购物车中。
示例代码:
Javascript:
$(".add-to-cart").on('click', function() {
// sample initialization code here
// ...
$.post("/url-to-server", {
id: id, // this is the variant ID
quantity: 1
}, function(response) {
// more checking to make sure we have proper response
});
return false;
});
服务器端代码(PHP):
protected function _ajax_add_item_to_cart()
{
$args = $this->input->post();
// custom app method that makes curl request
$result = $this->_shopify_request('post', 'cart/add.js', $args);
// custom app method that returns valid JSON
return $this->json_response(true, 'Item Added!', [
'item' => $result
]);
}
示例 JSON 响应(使用 Postman REST 客户端时的结果相同):
{
"id": 313743963,
"title": "All Natural GumBits 16oz",
"price": 3800,
"line_price": 3800,
"quantity": 1,
"sku": "",
"grams": 0,
"vendor": "horseshow",
"properties": null,
"variant_id": 313743963,
"url": "/products/all-natural-gumbits-16oz",
"image": "http://cdn.shopify.com/s/files/1/0235/4155/products/gumbits.png?43",
"handle": "all-natural-gumbits-16oz",
"requires_shipping": true
}
这是我使用 Shopify API 构建的第一个应用程序,因此我将不胜感激任何可以得到的指导。我考虑使用合作伙伴应用程序进行注册并使用 OAuth 身份验证,但这对于我需要做的事情来说似乎有点矫枉过正,因为我不想使用 Shopify 店面,而且我不打算在 Shopify 中提供我的应用程序应用商店。