Patrick Trasborg
Patrick Trasborg
Thanks @hayksaakian. Since these errors happen so frequently it might be good to have a specific case to catch them and report it back to the user. What do you...
That could be added! Looks like it would take a bit of configuration changing since it requires POST vs GET, but definitely doable
@Colibry-Source That would be great. Would you be able to make PRs in?
Yup, pull requests
@Colibry-Source It looks like the python trending searches uses this URL with a `POST` method: `TRENDING_SEARCHES_URL = 'https://trends.google.com/trends/hottrends/hotItems'` Right now in [utilities.js](https://github.com/pat310/google-trends-api/blob/master/src/utilities.js) it's hard coded to always perform a `GET`...
@Colibry-Source I think we should look into the [daily trends](https://trends.google.com/trends/trendingsearches/daily?geo=US) endpoint, it would probably be easier to implement and might cover what we're looking for. It goes something like this:...
There is also real time searches: `https://trends.google.com/trends/api/realtimetrends?hl=en-US&tz=300&cat=all&fi=0&fs=0&geo=US&ri=300&rs=20&sort=0`
@cjm771 are you still having trouble? I'm getting results back when testing. Did you make a lot requests in a short time frame or was it just once? Also, can...
@cjm771 what version of are you using? `trendData` isn't a method anymore, can you try upgrading to `4.6.2`?
Are you using the [related topics](https://github.com/pat310/google-trends-api#relatedtopics) method? It seems to work for me when running the query in the examples file. Can you send your query?