我想知道Magento是否提供了跟进的API。
- 产品搜索。
- 加入愿望清单。
- 查看心愿单。
- 加入购物车。
醇>
如果它确实为上面提供了API,那么任何人都可以共享它的有用资源。
谢谢
答案 0 :(得分:2)
产品搜索。 加入愿望清单。 查看心愿单。 加入购物车。
http://localhost/magento/rest/V1/products?searchCriteria[filter_groups][0][filters][1][field]=name&searchCriteria[filter_groups][0][filters][1][value]=%25<的 Name_Of_Product 强>>%25安培; searchCriteria [filter_groups] [0] [过滤器] [1] [condition_type] =像
http://localhost/magento/rest/V1/carts/mine/items/
注意:将商品添加到注册客户的购物车中。 我们要求发送的两件事,第一个令牌& 第二是cartItems细节。 例如 要在POST请求中加载的正文
{“cartItem”:{“ sku ”:“WS1M-Orange-Flav”,“ qty ”: 1,“ quote_id ”:“4”}}
答案 1 :(得分:1)
产品搜索 - NO。
加入愿望清单 - NO。
查看心愿单 - 没有。
加入购物车 - 是的。请参阅shoppingCartProductAdd
获取V2,shopping_cart_product.add
获取V1
答案 2 :(得分:0)
是的,Magento API可在您的扩展程序中使用自定义API模型进行扩展。我们经常对入站/出站呼叫使用Magento API扩展。 Magento支持多个API后端 - Rest,SOAP,XML-RPC(v1),v2 only REST和SOAP,如果我没记错的话。
Magento 1
http://devdocs.magento.com/guides/m1x/api/rest/introduction.html http://devdocs.magento.com/guides/m1x/api/rest/Resources/resources.html
Magento 2 http://devdocs.magento.com/guides/v2.0/get-started/bk-get-started-api.html