LoginSignup
0
0

More than 3 years have passed since last update.

curl: Google Cloud Translation API がサポートする言語の一覧を取得

Last updated at Posted at 2020-11-27

参考ページ
Method: projects.getSupportedLanguages

export GOOGLE_APPLICATION_CREDENTIALS=./***.json
#
curl \
-H "Authorization: Bearer "$(gcloud auth application-default print-access-token) \
-H "Content-Type: application/json; charset=utf-8" \
 https://translation.googleapis.com/v3/projects/project-translation/supportedLanguages

実行結果

{
  "languages": [
    {
      "languageCode": "af",
      "supportSource": true,
      "supportTarget": true
    },
    {
      "languageCode": "am",
      "supportSource": true,
      "supportTarget": true
    },
    {
      "languageCode": "ar",
      "supportSource": true,
      "supportTarget": true
    },
(省略)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0