TypeScript typings for Cloud Natural Language API v2
Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
For detailed description please check documentation.
Installing
Install typings for Cloud Natural Language API:
npm install @types/gapi.client.language-v2 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load(
'https://language.googleapis.com/$discovery/rest?version=v2',
() => {
},
);
gapi.client.load('language', 'v2', () => {
});
Don't forget to authenticate your client before sending any request to resources:
var client_id = '',
scope = [
'https://www.googleapis.com/auth/cloud-language',
'https://www.googleapis.com/auth/cloud-platform',
],
immediate = true;
gapi.auth.authorize(
{client_id: client_id, scope: scope, immediate: immediate},
authResult => {
if (authResult && !authResult.error) {
} else {
}
},
);
After that you can use Cloud Natural Language API resources:
await gapi.client.language.documents.analyzeEntities({});
await gapi.client.language.documents.analyzeSentiment({});
await gapi.client.language.documents.annotateText({});
await gapi.client.language.documents.classifyText({});
await gapi.client.language.documents.moderateText({});