我需要根据URL从沃尔玛检索产品信息。
我当前正在使用他们的产品查找API,并且需要找到itemId。我以为结尾数字是itemID,但他们的API文档未返回该产品的结果 https://www.walmart.com/ip/Sportsman-Gasoline-2000W-Portable-Generator/46542330
Cost_A*X + Cost_B*(1-X)
结果
http://api.walmartlabs.com/v1/items?apiKey={apikey}&ids=46542330
它适用于某些产品,例如这种产品 https://www.walmart.com/ip/Riders-by-Lee-Women-s-Soft-Flannel-Plaid-Shirt/46511109
{
"errors": [
{
"code": 6001,
"message": "Results not found"
}
]
}
是不是因为某些原因它不适用于所有产品,还是有更好的方法基于URL获取产品信息?