0.0.20240916 • Published 10 months ago
@maxim_mazurok/gapi.client.manufacturers-v1 v0.0.20240916
TypeScript typings for Manufacturer Center API v1
Public API for managing Manufacturer Center related data. For detailed description please check documentation.
Installing
Install typings for Manufacturer Center API:
npm install @types/gapi.client.manufacturers-v1 --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://manufacturers.googleapis.com/$discovery/rest?version=v1',
() => {
// now we can use:
// gapi.client.manufacturers
}
);
// 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('manufacturers', 'v1', () => {
// now we can use:
// gapi.client.manufacturers
});
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 = [
// Manage your product listings for Google Manufacturer Center
'https://www.googleapis.com/auth/manufacturercenter',
],
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 Manufacturer Center API resources:
0.0.20240916
10 months ago
0.0.20240809
11 months ago
0.0.20240524
1 year ago
0.0.20240716
12 months ago
0.0.20240730
12 months ago
0.0.20240416
1 year ago
0.0.20240409
1 year ago
0.0.20240205
1 year ago
0.0.20231211
2 years ago
0.0.20230831
2 years ago
0.0.20231109
2 years ago
0.0.20231113
2 years ago
0.0.20230602
2 years ago
0.0.20230209
2 years ago
0.0.20230130
2 years ago
0.0.20230201
2 years ago
0.0.20221214
3 years ago
0.0.20221104
3 years ago
0.0.20221114
3 years ago
0.0.20221206
3 years ago
0.0.20230123
2 years ago
0.0.20230112
3 years ago
0.0.20221003
3 years ago
0.0.20221024
3 years ago
0.0.20221011
3 years ago
0.0.20220926
3 years ago
0.0.20220817
3 years ago
0.0.20220913
3 years ago
0.0.20220812
3 years ago
0.0.20220809
3 years ago