Google api 如何在google购物API中限制价格范围

Google api 如何在google购物API中限制价格范围,google-api,url-encoding,google-shopping-api,Google Api,Url Encoding,Google Shopping Api,我正在使用谷歌购物API尝试检索具有一定数量的magnitud“订单”的产品,或者与此近似的产品。例如,如果我想选择价格范围在40美元到60美元之间的产品:$50+/-$10。我应该在URL搜索字符串中添加什么 我知道我可以这样按价格排名(根据API): 不过,正确的方法是使用flask和jinja2以及ajax。在使用google shopping API主“items”对象时,必须了解如何使用JSON以及它如何正确映射到等价的python对象: "product": { "googleI

我正在使用谷歌购物API尝试检索具有一定数量的magnitud“订单”的产品,或者与此近似的产品。例如,如果我想选择价格范围在40美元到60美元之间的产品:$50+/-$10。我应该在URL搜索字符串中添加什么

我知道我可以这样按价格排名(根据API):


不过,正确的方法是使用flask和jinja2以及ajax。在使用google shopping API主“items”对象时,必须了解如何使用JSON以及它如何正确映射到等价的python对象:

"product": {
  "googleId": "9243781955569725518",
  "author": {
    "name": "CompUPlus.com",
    "accountId": "1209120"
  },
  "creationTime": "2010-03-04T09:51:45.000Z",
  "modificationTime": "2010-11-25T09:24:08.000Z",
  "language": "en",
  "country": "US",
  "title": "Logitech Squeezebox Radio, black",
  "description": "Logitech Squeezebox Radio brings a world of free Internet radio subscription
                  services and your personal digital music collection to any space in your home
                  over your Wi-Fi network.",
  "link": "http://www.compuplus.com/Radios/LOGITECH-Squeezebox-Radio-BLK-930-1115160.html",
  "gtin": "00097855063601",
  "gtins": [
   "00097855063601"
  ],
  "brand": "Logitech",
  "mpn": "930-000101",
  "condition": "new",
  "images": [
    { "link": "http://content.etilize.com/300/1014430207.jpg" }
  ]
  "inventories": [
    {
      "channel": "online",
      "availability": "inStock",
      "currency": "usd",
      "price": 183.19
    }
  ],
}

不过,正确的方法是使用flask和jinja2以及ajax。在使用google shopping API主“items”对象时,必须了解如何使用JSON以及它如何正确映射到等价的python对象:

"product": {
  "googleId": "9243781955569725518",
  "author": {
    "name": "CompUPlus.com",
    "accountId": "1209120"
  },
  "creationTime": "2010-03-04T09:51:45.000Z",
  "modificationTime": "2010-11-25T09:24:08.000Z",
  "language": "en",
  "country": "US",
  "title": "Logitech Squeezebox Radio, black",
  "description": "Logitech Squeezebox Radio brings a world of free Internet radio subscription
                  services and your personal digital music collection to any space in your home
                  over your Wi-Fi network.",
  "link": "http://www.compuplus.com/Radios/LOGITECH-Squeezebox-Radio-BLK-930-1115160.html",
  "gtin": "00097855063601",
  "gtins": [
   "00097855063601"
  ],
  "brand": "Logitech",
  "mpn": "930-000101",
  "condition": "new",
  "images": [
    { "link": "http://content.etilize.com/300/1014430207.jpg" }
  ]
  "inventories": [
    {
      "channel": "online",
      "availability": "inStock",
      "currency": "usd",
      "price": 183.19
    }
  ],
}