google-shopping-api

PHP Fatal error: Uncaught GuzzleHttp\Exception\RequestException: cURL error 2: easy handle already used in multi handle

懵懂的女人 提交于 2021-02-07 17:03:54
问题 I am a user not a developer. The developer is not available. This is the Google API library used in Google Shopping Products submission scripts. The scripts worked successfully, every 20 minutes, for 2 years + the first 5 hours of yesterday. Then the following error: [18-Apr-2020 06:20:03 Europe/London] PHP Fatal error: Uncaught GuzzleHttp\Exception\RequestException: cURL error 2: easy handle already used in multi handle (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) in ../vendor

Google Shopping REST API restricting by Category

笑着哭i 提交于 2019-12-23 12:44:30
问题 I'm trying restrict Google Shopping Requests by a category (In this case, I only want actual Movies/DVDs/Blu-Rays returned).. Here is what I am passing: https://www.googleapis.com/shopping/search/v1/public/products?country=US&q=Terminator&key=MY_KEY Where MY_KEY is the key I obtained from: https://code.google.com/apis/console/#project:396093783634:access I would like my returned results to look more like this: https://www.google.com/webhp?rlz=1C1CHFX_enUS459US459&sourceid=chrome-instant&ie

how to restrict price range in google shopping API

隐身守侯 提交于 2019-12-11 03:48:56
问题 I'm using the Google Shopping API to try to retrieve products that have an "order" of magnitud of a certain number, or approximation to this. For example If I would to select products that are between th $40 - $60 price range : $50 +/- $10. What should I add in the URL search string? I know I can rank by price like this (according to the API): GET https://www.googleapis.com/shopping/search/v1/public/products?key=key&country=US&q=%22mp3+player%22%7Cipod&rankBy=price%3Adescending 回答1: Nevermind