0.0.20240505 • Published 3 days ago

@maxim_mazurok/gapi.client.safebrowsing-v5 v0.0.20240505

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

TypeScript typings for Safe Browsing API v5

Enables client applications to check web resources (most commonly URLs) against Google-generated lists of unsafe web resources. The Safe Browsing APIs are for non-commercial use only. If you need to use APIs to detect malicious URLs for commercial purposes – meaning “for sale or revenue-generating purposes” – please refer to the Web Risk API. For detailed description please check documentation.

Installing

Install typings for Safe Browsing API:

npm install @types/gapi.client.safebrowsing-v5 --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://safebrowsing.googleapis.com/$discovery/rest?version=v5',
  () => {
    // now we can use:
    // gapi.client.safebrowsing
  }
);
// 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('safebrowsing', 'v5', () => {
  // now we can use:
  // gapi.client.safebrowsing
});

After that you can use Safe Browsing API resources:

/*
Search for full hashes matching the specified prefixes. This is a custom method as defined by https://google.aip.dev/136 (the custom method refers to this method having a custom name within Google's general API development nomenclature; it does not refer to using a custom HTTP method).
*/
await gapi.client.safebrowsing.hashes.search({});
0.0.20240505

3 days ago

0.0.20240428

9 days ago

0.0.20240421

15 days ago

0.0.20240414

24 days ago

0.0.20240331

1 month ago

0.0.20240324

1 month ago

0.0.20240317

2 months ago

0.0.20240303

2 months ago

0.0.20240225

2 months ago

0.0.20240211

3 months ago

0.0.20240204

3 months ago

0.0.20240128

3 months ago

0.0.20240121

4 months ago

0.0.20240107

4 months ago

0.0.20231210

5 months ago

0.0.20231112

6 months ago

0.0.20231105

6 months ago

0.0.20231029

6 months ago

0.0.20231022

7 months ago

0.0.20231015

7 months ago

0.0.20231008

7 months ago

0.0.20231001

7 months ago

0.0.20230923

7 months ago