Skip to content

Instantly share code, notes, and snippets.

@umaz
Created February 5, 2019 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save umaz/7f8505addfa99febd54916cf2c5468a7 to your computer and use it in GitHub Desktop.
Save umaz/7f8505addfa99febd54916cf2c5468a7 to your computer and use it in GitHub Desktop.
文書を翻訳するGAS
function doGet(e) {
var p = e.parameter;
var translatedText = LanguageApp.translate(p.text, p.source, p.target);
return translatedText;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment