How does JSL call google's web translation results?
For example, how do I translate the specified English content into Chinese?
This is the result of a GPT3.5 query and does not work.Thanks!url = "https://translate.google.com";
sourceText = "Hello, world!";
targetLanguage = "zh-CN"; // Chinese Simplified
// Build the HTTP request
postData = "sl=en&tl=" || urlEncode(targetLanguage) || "&text=" || urlEncode(sourceText);
headers = Associative Array("
...