Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SafeBrowsing

import { SafeBrowsing } from "https://googleapis.deno.dev/v1/safebrowsing:v5.ts";

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.

class SafeBrowsing {
constructor(client?: CredentialsClient, baseUrl?: string);
}

§Constructors

§
new SafeBrowsing(client?: CredentialsClient, baseUrl?: string)
[src]

§Methods

§

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).

§
hashListGet(name: string, opts?: HashListGetOptions): Promise<GoogleSecuritySafebrowsingV5HashList>
[src]

Get the latest contents of a hash list. A hash list may either by a threat list or a non-threat list such as the Global Cache. This is a standard Get method as defined by https://google.aip.dev/131 and the HTTP method is also GET.

@param name

Required. The name of this particular hash list. It may be a threat list, or it may be the Global Cache.

§

Get multiple hash lists at once. It is very common for a client to need to get multiple hash lists. Using this method is preferred over using the regular Get method multiple times. This is a standard batch Get method as defined by https://google.aip.dev/231 and the HTTP method is also GET.

§

List hash lists. In the V5 API, Google will never remove a hash list that has ever been returned by this method. This enables clients to skip using this method and simply hard-code all hash lists they need. This is a standard List method as defined by https://google.aip.dev/132 and the HTTP method is GET.