snippets_js
Integration
New integration from credential
const googleAdsClient = await yepcode.integration.googleAds("credential-slug");
New integration from plain authentication data
const { GoogleAdsApi } = require("google-ads-api");
const googleAdsClient = new GoogleAdsApi({
client_id: "<CLIENT-ID>",
client_secret: "<CLIENT-SECRET>",
developer_token: "<DEVELOPER-TOKEN>",
});