구글 번역 API

Jmnote (토론 | 기여)님의 2021년 3월 17일 (수) 00:05 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

구글 번역 API
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/my-key.json"
curl -X POST https://translation.googleapis.com/language/translate/v2 \
-H "Authorization: Bearer "$(gcloud auth application-default print-access-token) \
-H "Content-Type: application/json; charset=utf-8" \
-d '{"source": "en", "target": "ko", "format": "text", "q": "The Great Pyramid of Giza (also known as the Pyramid of Khufu or the Pyramid of Cheops) is the oldest and largest of the three pyramids in the Giza pyramid complex."}'
testuser@localhost:~$ sh test.sh
{
  "data": {
    "translations": [
      {
        "translatedText": "기자의 피라미드 (Khufu의 피라미드 또는 Cheops의 피라미드라고도 함)는 기자 피라미드 단지에있는 세 피라미드 중 가장 오래되고 가장 큰 피라미드입니다."
      }
    ]
  }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}