Hi.
https://www.googleapis.com/language/translate/v2?key=mykey&q=hello%20world&source=en&target=de
And I'm, getting
{
"data": {
"translations": [
{
"translatedText": "hallo welt"
}
]
}
}
what is the best way to get a translatedText variable with
"hallo welt" value, than I could print like Response.Write(translatedText); and could see hallo welt on browser?
Go to the complete details ...