我正在使用Shopify API开发自定义网络应用。这里的想法是使用应用程序作为独家店面,只是向Shopify API发出请求。我在Shopify帐户中设置了一个私人应用程序来执行此操作。
我从api中获取产品没有问题(使用/admin/products.json API端点)。但是我有一点时间试图使用Ajax API,特别是/cart/add.js API端点将产品添加到我的域中的购物车。我在使用my时获得了正确的JSON响应REST客户端(我正在使用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中提供我的应用程序,这似乎有点过头了。 App Store。
答案 0 :(得分:3)
似乎有一个未记录的功能(记录为here)将客户直接转发到结帐页面(带有预先填充的购物车)。您只需构建一个特殊的URL,例如:
# order 1 item of product with variant_id 300823433
http://murray-inc9186.myshopify.com/cart/300823433:1
或
# order 1 item of product with variant_id 300823433
# order 2 items of product with variant_id 261826220
http://murray-inc9186.myshopify.com/cart/300823433:1,261826220:2
也许你可以使用这个特殊的URL而不是AJAX POST到购物车。