Docs

Docs

  • Getting Started
  • Features
  • Docs
  • API
  • FAQS

›Guides

Getting Started

  • Introduction
  • Detections

Development

  • Quickstart
  • Concepts

Guides

  • First Analysis
  • Understanding analysis results
  • Select a specific Location
  • Select a specific Device
  • Configuring the Notification Service
  • Managing Custom Alert Rules
  • Create a Project
  • A closer look at the detection: Permission API
  • RTB Analysis

Threat Intelligence

  • Introduction
  • Odin
  • Endpoint
  • Authentication
  • Lookup
  • Violation Weight Map

Real-Time Blocking

  • Introduction
  • User Manual

GraphQL

  • Overview
  • Concepts
  • Forming Calls

RTB Analysis

In this guide we're going to see how you can create a Real Time Bidding analysis.

RTB analysis allows to detect and scan ads inside Real Time Bidding URL's.

Prerequisites

Since RTB analyses are done programatically (via API) you will need to configure your environment to use the AdSecure API.

Here you can find the API quickstart guide and the first analysis guide, both are necessary in order to proceed successfully.

Create a RTB analysis

RTB analysis are regular analysis, the difference being that they will scan the AD inside the RTB URL instead of the URL itself.

Like in the first analysis guide, you will send a graphql query in order to create this analysis type, just make sure your input contains the supportingFormat parameter set to RTB like in the query below:

Query
mutation {
  createAnalysis(input: {
    name: "RTB Test Analysis",
    content: "<INSERT RTB URL HERE>",
    supportingFormat: "RTB"
  }) {
    id
    report {
      url
    }
    name
  }
}
Response
{
  "data": {
    "createAnalysis": {
      "id": "<REPORT ID>",
      "report": {
        "url": "https://<REPORT-URL>/.../<REPORT ID>.json"
      },
      "name": "RTB Test Analysis"
    }
  }
}

Once the analysis is finished, you can follow the understanding analysis results guide to check the resulting report.

← A closer look at the detection: Permission APIIntroduction →
  • Prerequisites
    • Create a RTB analysis
Copyright © 2022 AdSecure