gpt4 book ai didi

php - 如何使用 Shopify API 将商品添加到购物车

转载 作者:行者123 更新时间:2023-11-29 19:53:41 41 4
gpt4 key购买 nike

我正在使用 Shopify API 开发自定义网络应用程序。这里的想法是将该应用程序用作专有店面,只向 Shopify API 发出请求。我在我的 Shopify 帐户中设置了一个私有(private)应用程序来执行此操作。

我从 api 中提取产品没有问题(使用/admin/products.json API 端点)。但是我有一段时间试图使用 Ajax API 将产品从我的域添加到购物车中。特别是/cart/add.js API 端点。我在使用我的 REST 客户端时得到了正确的 JSON 响应(我使用的是 Google Chrome 扩展 Postman),但我终生无法让它在其中工作我自己的应用程序。

在我的应用程序中,我向我自己的服务器发送一个 AJAX 请求,该服务器又使用 curl 调用 API 端点并返回一个 JSON 响应(以避免跨域问题/必须使用 JSONP)。即使两个 JSON 响应相同,该项目也没有添加到我的网络应用程序中的购物车。

示例代码:

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 中提供我的应用程序应用商店。

最佳答案

似乎有一个未记录功能(已记录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 POSTing 到购物车。

关于php - 如何使用 Shopify API 将商品添加到购物车,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16679346/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com