curl https://domain.com/api/v2/entries/en/hello
{"title":"No Definitions Found","message":"Sorry pal, we couldn't find definitions for the word you were looking for.","resolution":"You can try the search again at later time or head to the web instead."}
The project's modules/dictionary.js file makes a request to this URL:
https://www.google.com/async/callback:5493?fc=...&async=term:hello,corpus:en,...
This is an internal, undocumented endpoint of Google. Google can change, restrict, or completely disable it at any time. Unfortunately, this is the biggest weakness of this project — it doesn't have its own database, it's dependent on Google.The project's modules/dict
Is there a solution to this?
curl https://domain.com/api/v2/entries/en/hello
{"title":"No Definitions Found","message":"Sorry pal, we couldn't find definitions for the word you were looking for.","resolution":"You can try the search again at later time or head to the web instead."}
The project's modules/dictionary.js file makes a request to this URL:
https://www.google.com/async/callback:5493?fc=...&async=term:hello,corpus:en,...
This is an internal, undocumented endpoint of Google. Google can change, restrict, or completely disable it at any time. Unfortunately, this is the biggest weakness of this project — it doesn't have its own database, it's dependent on Google.The project's modules/dict
Is there a solution to this?