Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get words from google translate phrasebook?

I need some way to get words from my phrasebook in google translate. How can I get all words from Google Translate Phasebook? Are there any java api for it?

like image 380
veinhorn Avatar asked Aug 02 '13 14:08

veinhorn


1 Answers

Try Firebug to see the GET/POST parameters, then look for something like Curl in Java to send those parameters and finally parse the HTTP response. Google Translate uses ajax to send and receive the HTTP requests and Firebug is the best tool for that.

like image 161
Ashkan Avatar answered Nov 06 '22 19:11

Ashkan