gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
13 lines • 725 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// The web address for generating Google OAuth2 credentials
exports.GOOGLE_OAUTH2_ENDPOINT = 'https://accounts.google.com/o/oauth2/token';
// The recommended amount of time (in ms) of
// refreshing OAuth2 credentials in advance of its expiration.
exports.REFRESH_BUFFER_MS = 300000; // 5 minutes
// The Google OAuth2 2.0 scopes for authorizing
// with the APIs supported by this library. Other scopes can be found
// here: https://developers.google.com/identity/protocols/googlescopes
exports.SCOPE_ADWORDS = 'https://www.googleapis.com/auth/adwords';
exports.SCOPE_DFP = 'https://www.googleapis.com/auth/dfp';
//# sourceMappingURL=constants.js.map