Git Product home page Git Product logo

if-this-then-ad's Introduction

If This Then Ad (IFTTA)

build GitHub tag (latest SemVer) GitHub last commit Code Style: Google

Table of contents

Overview

IFTTA enables automatic management of marketing campaigns based on real world events.

It allows you to query data from virtually any JSON API and control entities in various campaign management tools (e.g. DV360 and Google Ads) in response to the results.

You can get very creative when using this tool and it's capabilities are only limited by your imagination. Here are some inspirations for what can be achieved:

  • Enable a DV360 Line Item if it's sunny in London

  • Pause Google Ads AdGroup whenever stocks of SuperCompany goes below $X

  • Enable all Google Ads that have the label 'performance' if it's raining AND pollen levels are above a certain level

Why would you want to do this?

  • Control ads to reach the right audiences at the right time under the right circumstances

  • Automate campaign management in response to real-time events like weather, pollen data, air quality and more! This can be challenging or even impossible (imagine manually switching hundreds of ad groups every day - not only time consuming but also highly error-prone)

  • Personalize ads and create a "WOW" effect for the end user

Getting started

  1. Create a Google Cloud project or re-use an existing one

  2. Create an OAuth Consent Screen

    • Follow the instructions in the setup wizard
  3. Enable the following APIs:

  4. Make a copy of the IFTTA Template

  5. Set your GCP Project Number at Extensions > Apps Script > Project Settings > Google Cloud Platform (GCP) Project

  6. Choose a JSON API to be used as data source

  7. Set up an account for activation (see Supported Target Agents below)

  8. Get creative with coming up with rules that suit your marketing needs (guide)

How it works

The tool works with "Rules" which describe which source to check how often and which target to manage.

A rule consists of the following elements:

  • Rule Name

    Arbitrary name of your choice for readability

  • Activation Formula

    Any sheet formula that returns TRUE or FALSE. This would usually reference the API result fields (see below).

    For more complex evaluations, please see the section on "Custom Evaluator" below

  • Update Interval

    Regularly the fetch and sync processes would be started automatically using an Apps Script onOpen() Trigger. This is the default behaviour with Update Interval = 0.

    However, if you would like to realize different intervals between different rules, you can specify them in this column. The number value in this column will be interpreted as "hours".

  • Target Info

    Every Target Agent needs at least the following parameters:

    • Target Identifier

      This can be various things depending on the Agent. It may be a DV360 Line Item ID, a Google Ads Ad Group Label or something entirely different.

    • Target Action

      The action to be taken upon evaluation, e.g. enabling or pausing an Ad

    • Target Identifier Type

      Because the Target Identifier is not one thing for all, the Target Identifier Type is required to tell the tool what it is working with

    • Additional Parameters (optional)

      Depending on the Target Agent additinal information may be required, such as an Advertiser ID, a Developer Token or other (check out Supported Target Agents for details). You set them using the target: namespace (see Dynamic Column Notation)

  • Source Info

    • API URL

      Provide the URL to the API you want to query via source:url

    • Request Headers (optional)

      If the API you're querying requires any headers to be set (e.g. for authentication), add a column for each one using "Dynamic Column Notation" source:headers.<header name> and specify the respective value in the corresponding cell in each row

    • Query Parameters (optional)

      If the API you're querying requires any query parameters, add a column for each one using "Dynamic Column Notation" source:params.<param name> and specify the respective value in the corresponding cell in each row

  • API Result Paths

    To extract values from the queried API, add a column for each one using "Dynamic Column Notation" and the namespace result:. See API Result for examples.

How to run

Manually

You can run the tool manually using the "IFTTA" Sheets menu:

Setup

Automatically (via Trigger)

To run IFTTA automatically in the background, you need to first run the Setup from the "IFTTA" Sheets menu:

Setup

Next open up Apps Script by going to Extensions -> Apps Script:

To add a Trigger, first go to Extensions -> Apps Script

Setup

From there, go to "Triggers" and click "Add Trigger":

Setup

Select a function you would like to run (fetch to only fetch data, sync to only (de)activate without fresh data or fetchAndSync for both):

Setup

Select 'Time-driven' as 'Event source' and set the timings as per your requirements:

Setup

Click 'Save' to complete the process.

Dynamic Column Notation

To be as flexible as possible, IFTTA (Lite) uses "Dynamic Column Notation" to add API specific information like headers and query parameters and also to extract information from the request result.

Request Headers

Using the column title source:headers.<header name> lets the tool know to add the respective cell in each row to the request header when querying the API

Example:

Dynamic Column Notation - Headers

The resulting request header would be:

{
  "x-api-key": "abc123",
  "x-debug": "my-value"
}

Query Parameters

Encoding query parameters works very similar to request headers, the only difference being the prefix: source:params

Example:

Dynamic Column Notation - Query Parameters

The resulting url for the first row would look like this: https://<base-url>?lat=53.551086&lng=9.993682

API Result

Similar to setting headers and parameters, the 'Dynamic Column Notation' can also be used to extract data from JSON API results. Using the 'dot notation' we can traverse the JSON result to get to the data point we want to extract.

Dynamic Column Notation - Results

Given the above JSON source we could add the following to our Sheet:

Dynamic Column Notation - Results

You can also get min and max values from an array like so:

Dynamic Column Notation - Results

Given the above JSON source we could add the following to our Sheet:

Dynamic Column Notation - Results

Supported Target Agents

DV360

Required parameters

  • target:advertiserId

Optional parameters

  • target:serviceAccount

Google Ads

Required parameters

  • target:customerId
  • target:developerToken

Optional parameters

  • target:loginCustomerId (when accessing via MCC; should be the MCC's CID)
  • target:serviceAccount (alternative way of authentication)

Important

In order to use the Google Ads API on production (non-test) accounts, you need a Developer Token with access level "Basic". Please find information on how to get it in the official documentation

Advanced use cases

Custom Evaluators

In case you have rule conditions more complex than what a standard Sheets function could cover, you can easiily extend this by leveraging Apps Script's / Google Sheet's "Custom Functions".

Example

In the linked Apps Script, add another file custom.gs in which you can specify your custom evaluator.

Example:

function customEvaluator(val1, val2) {
  return val1 === 123 && val2 < 3;
}

You can then reference this function in the "Activation Formula" cell of the respective row:

=customEvaluator(K3, L3)

(adjust for your actual function name and input cells)

Any time any of the referenced cells change, customEvaluator() will be called to process the update.

Querying Multiple Sources

You can easily query multiple source APIs to built even more complex conditions by extending the Dynamic Column Notation with a group:

  • source:urlsource.1:url
  • source:params.latsource.1:params.lat

Add as many sources as you need by incrementing the group for each one.

To be able to access the correct API result for evaluation, the respective group is used again for reference:

  • result:current.tempresult.1:current.temp
  • result:current.weather.1.mainresult.1:current.weather.1.main

Custom Result Parser

IFTTA is designed to be as flexible as possible to cover just about any use case you could come up with for dynamic marketing. If by any chance you should encounter that JPath is not sufficient to extract the information from API results that you require, IFTTA has another ace up its sleeve: Custom Result Parser!

Analogue to a Custom Evaluator, to use a Custom Result Parser, you first need a custom function. You're free to (re-)use the custom.gs or any other file you like. In this file you add a function with a name of your choosing:

Example:

/**
 * Parse and process JSON result.
 *
 * @param {Object} data
 * @param {Object} params
 * @returns {string}
 */
function customParser(data, params) {
  return 'result';
}

The function's return value will be written to the corresponding cell cell in each row.

To call this function, just add another column with the heading: result:!CUSTOM.customParser.

If you need any parameters passed to the Custom Parser, you can add those using another column and the heading: customParser:<parameterName>. Put the values in the corresponding cells of each row. Add as many columns as you need parameters. The parameters will be passed to the Custom Parser in the following format:

{
  parameter1: 'value',
  parameter2: 'another value'
}

Developer Guide

How to work with the code

  1. Make sure Node and npm are installed

  2. Clone this repository

    git clone https://github.com/google/if-this-then-ad.git 
    
  3. Move into the repo folder

    cd if-this-then-ad/
    
  4. Install dependencies

    npm i
    
  5. Authenticate clasp (if not already done before)

    clasp login
    
  6. Build Apps Script target code

    This will transpile TypeScript to JavaScript and finally bundle everything into dist/index.js

    npm run build
    
  7. Create Google Sheet to deploy to

    clasp create --type sheets --title IFTTA-dev --rootDir ./dist && mv ./dist/.clasp.json .clasp-dev.json
    
  8. Deploy

    This will run all tests, transpile TypeScript to JavaScript, bundle everything into dist/index.js and finally deploy it with clasp

    npm run deploy
    

Application Flow

Here's a high level overview of what's happening under the hood:

Fetch

  • Call main() in src/index.ts with MODE.FETCH (or MODE.FETCH_AND_SYNC)

  • Load the entire feed from Sheet and iterate over it row-by-row

  • Check if row is due for update

  • Extract Source parameters using 'Dynamic Column Notation'

  • Call API URL for each source

  • Update the row data accordingly

  • Write back to Sheet

Sync

  • Call main() in src/index.ts with MODE.SYNC (or MODE.FETCH_AND_SYNC)

  • Load the entire feed from Sheet and iterate over it row-by-row

  • Check if row is due for update

  • Read the result of the Activation Formula

  • Extract Target parameters

  • Select the corresponding Target Agent

  • Call process() on the Target Agent to handle updating the specified Target Entity

  • Update the row data accordingly

  • Write back to Sheet

Validate

  • Call main() in src/index.ts with MODE.SYNC (or MODE.FETCH_AND_SYNC)

  • Load the entire feed from Sheet and iterate over it row-by-row

  • Read the result of the Activation Formula (supposed state)

  • Extract Target parameters

  • Select the corresponding Target Agent

  • Call validate() on the Target Agent to handle checking actual Entity state against the supposed state

  • Output any errors in case of mismatch

How to add a new Target Agent

Here's what you need to include a new Target Agent:

  1. Use src/target-agents/agent.sample.ts as a template for the Target Agent class
  2. Set a friendlyName of your choice
  3. Define requiredParameters (optional)
  4. Implement the process() function
  5. Implement the validate() function (optional)
  6. Add your new Target Agent class to the array in src/target-agents/index.ts
  7. Deploy your code
  8. Update data validation for 'Target Agent' and 'target:type' in the Sheet (optional)

FAQ

I don't have a Google Ads Developer Token (yet). Can I still use IFTTA?

While we recommend applying for a Developer Token for the integration to work "natively", it is also possible to separate the fetching and activation part so that you only query the API with IFTTA to then read and process the results using an Ads Script in your Ads account.

For more information please refer to the Google Ads Scripts Extension Documentation

I don't use Google Cloud (yet). Can I still use IFTTA?

To manage entities on DV360 you need a Google Cloud Project. The same goes for accessing the Google Ads via API. However, we have a workaround to manage Google Ads entities without the API by leveraging AdsScript: Google Ads Scripts Extension Documentation

Can I manage DV360 YouTube Line Items with IFTTA?

Sadly no, according to the official documentation: "YouTube & Partners resources and targeting can only be created or updated through the UI".

An easy workaround to this would be to put all the Line Items you want to control each in their designated Insertion Order which can then be managed by IFTTA. Note: This approach should not affect campaign performance.

Disclaimer

This is not an officially supported Google product.

if-this-then-ad's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

if-this-then-ad's Issues

Service Unavailable

Hi the application is not working and showing a blank page with this ( Service Unavailable)

Unusable. Can't change project number

When trying to deploy, it's not possible to change the project number on apps script project settings.
The error received is: You cannot switch to a Cloud Platform project outside the script owner's Cloud Organization.

We do not recognize the default project number (120857752170) and do not have access to it.

When syncing with the API this is the error received:
"error": {
"code": 403,
"message": "Display & Video 360 API has not been used in project 120857752170 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/displayvideo.googleapis.com/overview?project=120857752170 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.",
"status": "PERMISSION_DENIED",

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.