3.0.20220805 • Published 3 years ago

@maxim_mazurok/gapi.client.translate v3.0.20220805

Weekly downloads
39
License
MIT
Repository
github
Last release
3 years ago

TypeScript typings for Cloud Translation API v3

Integrates text translation into your website or application. For detailed description please check documentation.

Installing

Install typings for Cloud Translation API:

npm install @types/gapi.client.translate@v3 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load('translate', 'v3', () => {
  // now we can use gapi.client.translate
  // ...
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [ 
      // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
      'https://www.googleapis.com/auth/cloud-platform',

      // Translate text from one language to another using Google Translate
      'https://www.googleapis.com/auth/cloud-translation',
    ],
    immediate = true;
// ...

gapi.auth.authorize(
  { client_id: client_id, scope: scope, immediate: immediate },
  authResult => {
    if (authResult && !authResult.error) {
        /* handle successful authorization */
    } else {
        /* handle authorization error */
    }
});

After that you can use Cloud Translation API resources:

/*
Detects the language of text within a request.
*/
await gapi.client.translate.projects.detectLanguage({ parent: "parent",  });

/*
Returns a list of supported languages for translation.
*/
await gapi.client.translate.projects.getSupportedLanguages({ parent: "parent",  });

/*
Translates input text and returns translated text.
*/
await gapi.client.translate.projects.translateText({ parent: "parent",  });
3.0.20220805

3 years ago

3.0.20220711

3 years ago

3.0.20220715

3 years ago

3.0.20220722

3 years ago

3.0.20220602

3 years ago

3.0.20220415

3 years ago

3.0.20220422

3 years ago

3.0.20220401

3 years ago

3.0.20220316

3 years ago

3.0.20220112

3 years ago

3.0.20220117

3 years ago

3.0.20220121

3 years ago

3.0.20211220

4 years ago

3.0.20211105

4 years ago

3.0.20211203

4 years ago

3.0.20211029

4 years ago

3.0.20210924

4 years ago

3.0.20210910

4 years ago

3.0.20210907

4 years ago

3.0.20210809

4 years ago

3.0.20210806

4 years ago

3.0.20210729

4 years ago

3.0.20210625

4 years ago

3.0.20210521

4 years ago

3.0.20210513

4 years ago

3.0.20210506

4 years ago

3.0.20210430

4 years ago

3.0.20210416

4 years ago

3.0.20210412

4 years ago

3.0.20210402

4 years ago

3.0.20210312

4 years ago

3.0.20210226

4 years ago

3.0.20210219

4 years ago

3.0.20201230

4 years ago

3.0.20201211

5 years ago

3.0.20201204

5 years ago

3.0.20201112

5 years ago

3.0.20201106

5 years ago