4.0.20220616 • Published 2 years ago

@maxim_mazurok/gapi.client.analyticsreporting v4.0.20220616

Weekly downloads
36
License
MIT
Repository
github
Last release
2 years ago

TypeScript typings for Analytics Reporting API v4

Accesses Analytics report data. For detailed description please check documentation.

Installing

Install typings for Analytics Reporting API:

npm install @types/gapi.client.analyticsreporting@v4 --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('analyticsreporting', 'v4', () => {
  // now we can use gapi.client.analyticsreporting
  // ...
});

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 = [ 
      // View and manage your Google Analytics data
      'https://www.googleapis.com/auth/analytics',

      // See and download your Google Analytics data
      'https://www.googleapis.com/auth/analytics.readonly',
    ],
    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 Analytics Reporting API resources:

/*
Returns the Analytics data.
*/
await gapi.client.analyticsreporting.reports.batchGet({  });

/*
Returns User Activity data.
*/
await gapi.client.analyticsreporting.userActivity.search({  });
4.0.20220616

2 years ago

4.0.20211116

3 years ago

4.0.20220215

2 years ago

4.0.20220118

2 years ago

4.0.20220209

2 years ago

4.0.20211021

3 years ago

4.0.20211020

3 years ago

4.0.20210909

3 years ago

4.0.20210712

3 years ago

4.0.20210526

3 years ago

4.0.20210501

3 years ago

4.0.20210429

3 years ago

4.0.20210310

3 years ago

4.0.20210227

3 years ago

4.0.20210223

3 years ago

4.0.20210106

3 years ago

4.0.20201029

4 years ago