我需要从客户端使用的第三方网站提取库存数据,并使用REST API在其网站上显示该数据。我一直在四处寻找,但还没有找到明确的方法来做到这一点。
我需要从https://user.traxia.com/app/api/inventory
发出获取请求// request
{
"key": "API Key Here",
"query": "CAMERA",
"consignorId": "false",
"includeItemsWithQuantityZero": false
}
我希望回复是
{
"results":
[
{
"status":"ACTIVE"
"sku":"",
"name":"",
"cost":0
}
]
}
他们列出的文档在http://wiki.traxia.com/display/guide/List+and+Search+Inventory
由于我不知道如何做到这一点,任何帮助都会很棒! 代码示例非常感谢!
答案 0 :(得分:0)
就像与解释链接的答案一样,这个jQuery方法应该为你提供你想要的JSON结果:
$.get(
"https://user.traxia.com/app/api/inventory",
{key : 'API Key Here',
query : 'CAMERA',
consignorId : false,
includeItemsWithQuantityZero : false},
function(data) {
// data is a JSON object with the results you expect
},
"json"
);