Giter Site home page Giter Site logo

googleads-adxbuyer-examples's Introduction

Samples for the Authorized Buyers Ad Exchange Buyer II API (Deprecated)

Deprecated: The Ad Exchange Buyer II API is deprecated. RTB Troubleshooting will continue to be supported indefinitely, however all other resources are sunset as of September 29th, 2023.

These code samples are organized by platform or language.

  • java is a command-line sample that shows how to make most calls against the API, written in Java.
  • php is a set of samples that shows how to make most calls against the API, written in PHP.
  • python is a command-line sample that shows how to make most calls against the API, written in Python.
  • CSharp is a command-line sample that shows how to make most calls against the API, written in .Net.
  • ruby is a command-line sample that shows how to make most calls against the API, written in Ruby.

Please refer to the README.md file inside each directory for installation instructions.

googleads-adxbuyer-examples's People

Contributors

anashoommen avatar deanlukies avatar msaniscalchi avatar

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

Watchers

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

googleads-adxbuyer-examples's Issues

typo

in file googleads-adxbuyer-examples/python/get_creative.py

ACCOUNT_ID = int('INSERT_ACCOUNT_ID')

should be

ACCOUNT_ID = raw_input('INSERT_ACCOUNT_ID')

How to submit video Creatives

Hi,

I am not able to submit Video creatives using Java code. There is No error while submitting through code but not able to see submission in Creative explorer tab in Adx dashboard.

Creative creative = adXClient.creatives().get(accountId, buyerCreativeId).execute();
Creative testCreative = new Creative();
        testCreative.setAccountId(accountId);
        testCreative.setBuyerCreativeId(buyerCreativeId);
        testCreative.setClickThroughUrl(creative.getClickThroughUrl());
        if (creative.getHTMLSnippet() != null)
          testCreative.setHTMLSnippet(creative.getHTMLSnippet());
        if(creative.getVideoURL() != null)
          testCreative.setVideoURL(creative.getVideoURL());
        testCreative.setHeight(creative.getHeight());
        testCreative.setWidth(creative.getWidth());
        testCreative.setAgencyId(creative.getAgencyId());

        if (creative.getAdvertiserName() == null || creative.getAdvertiserName().isEmpty()){
          System.out.println("Adv name empty");
          testCreative.setAdvertiserName("None");
        }else
        {
          testCreative.setAdvertiserName(creative.getAdvertiserName());
        }
        Creative response = adXClient.creatives().insert(testCreative).execute();

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.