Я пытаюсь перевести некоторый текст, используя службу перевода GCP с REST api https://translation.googleapis.com/v3 Я использую метод аутентификации ключа API.
url и Body
https://translation.googleapis.com/v3/projects/my-translator-1122333:translateText?key=thisismykey { "content": ["Hello"], "sourceLanguageCode": "en", "targetLanguageCode": "ru" }
Однако я получил
{ "error": { "code": 401, "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.", "status": "UNAUTHENTICATED" } }
Может кто-нибудь объяснить мне, что я не так делаю? Спасибо