0.0.20241029 • Published 10 months ago

@maxim_mazurok/gapi.client.translate-v3beta1 v0.0.20241029

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

TypeScript typings for Cloud Translation API v3beta1

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-v3beta1 --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(
  'https://translation.googleapis.com/$discovery/rest?version=v3beta1',
  () => {
    // now we can use:
    // gapi.client.translate
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('translate', 'v3beta1', () => {
  // 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'});
0.0.20241029

10 months ago

0.0.20240912

11 months ago

0.0.20240903

12 months ago

0.0.20240830

12 months ago

0.0.20240821

1 year ago

0.0.20240717

1 year ago

0.0.20240718

1 year ago

0.0.20240301

1 year ago

0.0.20240131

2 years ago

0.0.20240126

2 years ago

0.0.20231201

2 years ago

0.0.20230811

2 years ago

0.0.20230714

2 years ago

0.0.20231013

2 years ago

0.0.20230808

2 years ago

0.0.20230721

2 years ago

0.0.20230922

2 years ago

0.0.20230519

2 years ago

0.0.20230511

2 years ago

0.0.20230526

2 years ago

0.0.20230428

2 years ago

0.0.20230414

2 years ago

0.0.20230403

2 years ago

0.0.20230303

2 years ago

0.0.20230407

2 years ago

0.0.20230224

2 years ago

0.0.20230310

2 years ago

0.0.20230203

3 years ago

0.0.20230127

3 years ago

0.0.20230210

3 years ago

0.0.20230222

2 years ago

0.0.20230106

3 years ago

0.0.20221028

3 years ago

0.0.20221111

3 years ago

0.0.20230120

3 years ago

0.0.20221021

3 years ago

0.0.20220916

3 years ago

0.0.20220907

3 years ago

0.0.20220819

3 years ago

0.0.20220909

3 years ago

0.0.20220911

3 years ago

0.0.20220826

3 years ago

0.0.20220805

3 years ago