Skip to main content

Google Ads

Credential configuration

To configure this credential you need to check each version (JavaScript or Python) initializacion options, providing the needed parameters in a JSON format.

note

The title is the triggering text for YepCode to autocomplete the script.

Integration

New integration from credential
const ${1:googleAdsClient} = await yepcode.integration.googleAds("${2:credential-slug}");
New integration from plain authentication data
const { GoogleAdsApi } = require("google-ads-api");

const ${1:googleAdsClient} = new GoogleAdsApi({
client_id: "<CLIENT-ID>",
client_secret: "<CLIENT-SECRET>",
developer_token: "<DEVELOPER-TOKEN>",
});