We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Il est impératif d'utiliser du JSON pour alléger la charge du réseau.
URL générique : http://<url_base>/<webservice_name> url_base = tatoeba.org/api ou api.tatoeba.org
webservice_name = search
search String texte à chercher lang String langue de la recherche
[ { "sentence" : "Ma premiere phrase", "lang": "fra", "direct_translation" : [ { "sentence" : "My first sentence", "lang": "eng", }, { "sentence" : "blablabla", "lang": "bla", }, ... ], "indirect_translation" : [ { "sentence" : "My first sentence", "lang": "eng", }, ... ] }, .... ]
Je préconise de garder la même définition des objects à travers les différents services afin d'évité du code redondant.
Sentence { sentence String lang String audio_url String direct Array<Sentence> indirect Array<Sentence> }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Généralité
Il est impératif d'utiliser du JSON pour alléger la charge du réseau.
URL générique : http://<url_base>/<webservice_name>
url_base = tatoeba.org/api ou api.tatoeba.org
Service de recherche
webservice_name = search
paramètre POST :
search String texte à chercher
lang String langue de la recherche
Réponse :
Commodité
Je préconise de garder la même définition des objects à travers les différents services afin d'évité du code redondant.
Classe Sentence
The text was updated successfully, but these errors were encountered: