Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Aniview prebid adapter v3.17 v___ and above support working with RTB demand tags.

...

  1. Only if there is a bid from the prebid tag, the renderer is called

  2. Only if the publisher choose to use the Aniview renderer it is called

  3. The renderer always use the position id defined in prebid setup

  4. It is possible to define a channel in the custom renderer and the channel will execute after running the bid from prebid so basically it runs the prebid and than continues to work as usual as its loaded in the page.

  5. Custom renderer setup:
    {
    bidder: 'aniview',
    params: {
    AV_PUBLISHERID: '55b78633181f4603178b4568',
    AV_CHANNELID: '5e9354521f78746eab47e8d8',
    rendererConfig: {
    tagUrl: "https://play.aniview.com/…. your short tag.js",
    tagId: "must match the scriptId in the tag.js"
    }
    }
    }

    1. Both tagUrl and tagId are mandatory

    2. tagId must match the scriptId in the template used otherwise it will not work

  6. Note that you should update the publisher that your custom script is taking over the prebid defined placement in order to avoid possible conflicts with prebid

...