www.bezkoder.com Open in urlscan Pro
2606:4700:3034::ac43:dbd6  Public Scan

Submitted URL: http://www.bezkoder.com/
Effective URL: https://www.bezkoder.com/
Submission: On December 10 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

GET https://www.bezkoder.com/

<form role="search" method="get" class="form-search" action="https://www.bezkoder.com/">
  <div class="input-group">
    <label class="screen-reader-text" for="s">Search for:</label>
    <input type="text" class="form-control search-query" placeholder="Search…" value="" name="s" title="Search for:">
    <span class="input-group-btn">
      <button type="submit" class="btn btn-default" name="submit" id="searchsubmit" value="Search"><span class="glyphicon glyphicon-search"></span></button>
    </span>
  </div>
</form>

Text Content

Skip to main content
Toggle navigation


BEZKODER

 * Courses
 * Full Stack
 * Spring
 * Node
 * Vue
 * Angular
 * React
 * Firebase
 * Django
 * Dart
 * JsonFormatter
 * Categories


REACT CUSTOM HOOK TUTORIAL WITH EXAMPLE

Last modified: October 16, 2022 bezkoder

In addition to the familiar Hooks like useState, useEffect, useRef…, React also
allows us to create custom Hooks with unique features that extracts component
logic into reusable functions. Let’s learn how to write a Custom Hook for API
call in React through a simple useAxiosFetch example.

More Practice:
– React Hooks CRUD example with Axios and Web API
– React Hooks File Upload example with Axios
– React Form Validation with Hooks example
– React Hooks: JWT Authentication (without Redux) example
– React + Redux: JWT Authentication example
– React Hooks + Firebase Realtime Database: CRUD App
– React Hooks + Firestore example: CRUD app
– React Custom Hook in Typescript example

Read More


KOTLIN HASHMAP TUTORIAL WITH EXAMPLES

Last modified: June 22, 2022 bezkoder

In this tutorial, we’ll show you many Kotlin HashMap methods and functions that
also work on Android. You will see many examples to:

 * Create, initialize, add item, get value, update, remove entries in a HashMap
 * Iterate over a HashMap
 * Filter a HashMap
 * Convert HashMap to List, transform a HashMap keys or values

Related Posts:
– Kotlin List & Mutable List
– Kotlin Queue

Read More


REACT AXIOS EXAMPLE – GET/POST/PUT/DELETE WITH REST API

Last modified: April 11, 2022 bezkoder 5 Comments

Axios is a promise-based HTTP Client Javascript library for Node.js and Browser.
In this tutorial, we will create React example that use Axios to make
Get/Post/Put/Delete request with Rest API and JSON data in a React functional
component (with Hooks).

Related Posts:
– React Custom Hook
– Axios Tutorial: Get/Post/Put/Delete request example
– React CRUD example with Axios, React Router and Rest API
– React Hooks: JWT Authentication & Authorization (without Redux) example
– React Hooks + Redux: JWT Authentication & Authorization example

Together with React Query:
React Query and Axios example with Rest API

Read More


KOTLIN SPLIT STRING EXAMPLE

Last modified: June 21, 2022 bezkoder 4 Comments

This Kotlin tutorial shows you ways to split string with Kotlin extension
functions.

Read More


SPRING BOOT JDBCTEMPLATE EXAMPLE: CRUD REST API

Last modified: May 12, 2023 bezkoder 1 Comment

In this tutorial, we’re gonna build a Spring Boot Rest CRUD API example that use
Spring JdbcTemplate to interact with H2 database. You’ll know:

 * How to configure Spring Data JDBC to work with Database
 * How to define Data Models and Repository interfaces
 * Way to create Spring Rest Controller to process HTTP requests
 * Way to use Spring JdbcTemplate to interact with H2 Database

Exception Handling:
– Spring Boot @ControllerAdvice & @ExceptionHandler example
– @RestControllerAdvice example in Spring Boot

Unit Test:
Spring Boot – Rest Controller Unit Test with @WebMvcTest
Or Documentation: Spring Boot + Swagger 3 example (with OpenAPI 3)
Caching: Spring Boot Redis Cache example

Using Spring Data JPA instead:
Spring Boot JPA + H2 example: Build a CRUD Rest APIs

Read More


KOTLIN – CONVERT XML TO JSON & JSON TO XML

Last modified: June 21, 2022 bezkoder 2 Comments

In this tutorial, I will show you way to convert XML to JSON & vice versa:
convert JSON to XML. You also know how to read XML/JSON file and convert data
into JSON/XML file.

Related Posts:
– Kotlin – Convert JSON to Object and vice versa using Jackson
– Kotlin – Convert object to/from JSON string using Gson

Read More


DART/FLUTTER FUTURE TUTORIAL WITH EXAMPLES

Last modified: June 21, 2022 bezkoder 1 Comment

Asynchronous programming allows a program to do work while waiting for something
else to complete. In this tutorial, we’ll show you how to work with Future in
Dart (also in Flutter). At the end, you’re gonna know:

 * Introduction to Dart Future
 * How to create Future, Future delayed and value methods
 * Basic Future usage: then, catchError and callback
 * Way to use Future async-await
 * Future multiple await/then for chain of multiple asynchronous methods
 * Equivalent of ‘finally’: Future whenComplete
 * Future wait for multiple futures complete

Related Posts:
– Dart/Flutter Constructors tutorial with examples
– Dart/Flutter String Methods & Operators tutorial with examples
– Dart/Flutter List Tutorial with Examples
– Dart/Flutter Map Tutorial with Examples
– Dart/Flutter – Sort list of Objects

Read More


DOCKER MERN STACK EXAMPLE – DOCKER COMPOSE

Last modified: October 8, 2023 bezkoder

Docker provides lightweight containers to run services in isolation from our
infrastructure so we can deliver software quickly. In this tutorial, I will show
you how to dockerize MERN stack Application (React + Node.js + Express +
MongoDB) example using Docker Compose and Nginx.

Related Posts:
– React + Node.js + Express + MongoDB example: CRUD App
– React + Node.js Express + MongoDB: User Authentication with JWT example
– Integrate React with Node.js Express on same Server/Port

Read More


WAYS TO WRITE TO FILE IN KOTLIN

Last modified: June 21, 2022 bezkoder

This tutorial shows you ways to write to File in Kotlin using PrintWriter,
BufferedWriter or Kotlin extension functions such as writeText() or write().
You’ll also know how to write Kotlin objects/JSON to a file.

Related Posts:
– How to read File in Kotlin
– Kotlin – Convert object to/from JSON string using Gson

Read More


DEPLOY SPRING BOOT APP ON AWS – ELASTIC BEANSTALK

Last modified: October 3, 2023 bezkoder 12 Comments

AWS (Amazon Web Services) is one of the most widely used cloud computing
platforms which provides a whole range of managed cloud services. In this
tutorial, I will show you step by step to deploy Spring Boot Application with
MySQL on AWS EC2 Instance using Elastic Beanstalk (for free).

Related Posts:
– Spring Boot, Spring Data JPA: Rest API example
– Spring Boot JdbcTemplate with MySQL: Rest API example
– Spring Boot Token based Authentication with Spring Security & JWT
– Documentation: Spring Boot + Swagger 3 example (with OpenAPI 3)
– Caching: Spring Boot Redis Cache example
– Dockerize with Docker Compose: Spring Boot and MySQL example
– or: Docker Compose: Spring Boot and Postgres example

Read More


KOTLIN MAP TRANSFORM EXAMPLE – MAPTO, MAP KEYS OR VALUES

Last modified: June 21, 2022 bezkoder

In this tutorial, I will show you many examples that transform a Kotlin Map
using map, mapTo, mapKeys, mapKeysTo, mapValues, mapValuesTo.

Related Posts:
– Kotlin HashMap tutorial with examples
– Kotlin List & Mutable List tutorial with examples

Read More


SPRING DATA REST EXAMPLE IN SPRING BOOT

Last modified: November 21, 2023 bezkoder

In this tutorial, we’re gonna build a Spring Data REST example in Spring Boot
CRUD REST API with Maven that uses Spring Data JPA to interact with H2 database
without having to manually implement controller and handling HTTP requests.
You’ll know:

 * How to configure Spring Data REST, JPA, Hibernate to work with Database
 * How to define Data Models and Repository interfaces
 * Way to use Spring Data JPA to interact with H2 Database
 * How to check CRUD operations with Postman

More Practice:
– Spring JPA @Query example
– JPA Repository query example | Derived Query
– JPA Native Query example
– Spring Boot Security Login example with JWT and H2 Database
– Spring Boot Rest XML example
– Spring Boot + GraphQL example
– Spring Boot Multipart File upload example
– Documentation: Spring Boot + Swagger 3 example (with OpenAPI 3)
– Caching: Spring Boot Redis Cache example
– Testing: Spring Boot Unit Test for JPA Repository

Associations:
– Spring Boot One To One example with JPA, Hibernate
– Spring Boot One To Many example with JPA, Hibernate
– Spring Boot Many to Many example with JPA, Hibernate

Read More


SPRING BOOT + GRAPHQL EXAMPLE

Last modified: November 15, 2023 bezkoder

GraphQL is a query language that offers an alternative model to developing APIs
(REST, SOAP or gRPC) with detailed description.

In this tutorial, we’re gonna build a Spring Boot GraphQL example with H2
database that will expose CRUD APIs to create, read, update and delete objects
with the help of graphql-spring-boot-starter and Spring Data JPA.

Related Post:
– Spring Boot + GraphQL + MySQL example
– Spring Boot + GraphQL + PostgreSQL example
– Spring Boot + GraphQL + MongoDB example
– Spring Boot 3 Rest API example: CRUD Application
– Spring Boot Security: Login and Registration example with JWT
– Spring Boot Thymeleaf CRUD example
– Documentation: Spring Boot Swagger 3 example
– Unit Test: @DataJpaTest example for Spring Data Repository
– Caching: Spring Boot Redis Cache example

Read More


SPRING BOOT + GRAPHQL + POSTGRESQL EXAMPLE

Last modified: November 15, 2023 bezkoder

GraphQL is a query language that offers an alternative model to developing APIs
(REST, SOAP or gRPC) with detailed description.

In this tutorial, we’re gonna build a Spring Boot GraphQL example with
PostgreSQL database that will expose CRUD APIs to create, read, update and
delete objects with the help of graphql-spring-boot-starter and Spring Data JPA.

Related Post:
– Spring Boot + PostgreSQL example: CRUD Rest API
– Spring Boot, Spring Security, PostgreSQL: JWT Authentication example
– Spring Boot Thymeleaf CRUD example
– Documentation: Spring Boot Swagger 3 example
– Unit Test: @DataJpaTest example for Spring Data Repository
– Caching: Spring Boot Redis Cache example
– Dockerize: Docker Compose: Spring Boot and Postgres example

Read More


DOCKER COMPOSE: MONGODB AND SPRING BOOT EXAMPLE

Last modified: November 1, 2023 bezkoder

Docker provides lightweight containers to run services in isolation from our
infrastructure so we can deliver software quickly. In this tutorial, I will show
you how to dockerize Spring Boot and MongoDB example using Docker Compose.

Related Posts:
– Spring Boot and MongoDB CRUD example
– Spring Boot Reactive + MongoDB example
– Spring Boot, Spring Security, MongoDB: JWT Authentication example
– Documentation: Spring Boot Swagger 3 example
– Caching: Spring Boot Redis Cache example

Read More


DOCKER COMPOSE NODEJS AND POSTGRES EXAMPLE

Last modified: October 15, 2023 bezkoder

Docker provides lightweight containers to run services in isolation from our
infrastructure so we can deliver software quickly. In this tutorial, I will show
you how to dockerize Nodejs Express and Postgres example using Docker Compose.

Related Posts:
– Node.js Express & PostgreSQL Rest APIs example
– Node.js Express Pagination with PostgreSQL example
– Node.js Typescript Rest API with Postgres example
– Node.js JWT Authentication & Authorization with PostgreSQL example
– Import CSV data into PostgreSQL using Node.js
– Export PostgreSQL data to CSV file using Node.js

Read More


POSTS NAVIGATION

1 2 … 105
Search for:





FOLLOW US

 * Facebook
 * Youtube
 * Github


TOOLS

 * Json Formatter

 * .
 * Privacy Policy
 * Contact
 * About

© 2019-2022 bezkoder.com


X





BEZKODER.COM ASKS FOR YOUR CONSENT TO USE YOUR PERSONAL DATA TO:

 * perm_identity
   Personalised advertising and content, advertising and content measurement,
   audience research and services development
 * devices
   Store and/or access information on a device

expand_moreremove
Learn more
 * 
   How can I change my choice?
 * 
   What if I don't consent?
 * 
   How does legitimate interest work?
 * 
   Do I have to consent to everything?

Your personal data will be processed and information from your device (cookies,
unique identifiers, and other device data) may be stored by, accessed by and
shared with 136 TCF vendor(s) and 66 ad partner(s), or used specifically by this
site or app.

Some vendors may process your personal data on the basis of legitimate interest,
which you can object to by managing your options below. Look for a link at the
bottom of this page or in our privacy policy where you can withdraw consent.

Consent



Do not consent

Manage options

arrow_back

Data preferences


MANAGE YOUR DATA

You can choose how your personal data is used. Vendors want your permission to
do the following:

TCF vendors

help_outline


STORE AND/OR ACCESS INFORMATION ON A DEVICE

Cookies, device or similar online identifiers (e.g. login-based identifiers,
randomly assigned identifiers, network based identifiers) together with other
information (e.g. browser type and information, language, screen size, supported
technologies etc.) can be stored or read on your device to recognise it each
time it connects to an app or to a website, for one or several of the purposes
presented here.

View details
Consent (120 vendors)


USE LIMITED DATA TO SELECT ADVERTISING

Advertising presented to you on this service can be based on limited data, such
as the website or app you are using, your non-precise location, your device type
or which content you are (or have been) interacting with (for example, to limit
the number of times an ad is presented to you).

View details
Consent (70 vendors)Legitimate interest (33 vendors)help_outline


CREATE PROFILES FOR PERSONALISED ADVERTISING

Information about your activity on this service (such as forms you submit,
content you look at) can be stored and combined with other information about you
(for example, information from your previous activity on this service and other
websites or apps) or similar users. This is then used to build or improve a
profile about you (that might include possible interests and personal aspects).
Your profile can be used (also later) to present advertising that appears more
relevant based on your possible interests by this and other entities.

View details
Consent (99 vendors)


USE PROFILES TO SELECT PERSONALISED ADVERTISING

Advertising presented to you on this service can be based on your advertising
profiles, which can reflect your activity on this service or other websites or
apps (like the forms you submit, content you look at), possible interests and
personal aspects.

View details
Consent (94 vendors)


CREATE PROFILES TO PERSONALISE CONTENT

Information about your activity on this service (for instance, forms you submit,
non-advertising content you look at) can be stored and combined with other
information about you (such as your previous activity on this service or other
websites or apps) or similar users. This is then used to build or improve a
profile about you (which might for example include possible interests and
personal aspects). Your profile can be used (also later) to present content that
appears more relevant based on your possible interests, such as by adapting the
order in which content is shown to you, so that it is even easier for you to
find content that matches your interests.

View details
Consent (32 vendors)


USE PROFILES TO SELECT PERSONALISED CONTENT

Content presented to you on this service can be based on your content
personalisation profiles, which can reflect your activity on this or other
services (for instance, the forms you submit, content you look at), possible
interests and personal aspects, such as by adapting the order in which content
is shown to you, so that it is even easier for you to find (non-advertising)
content that matches your interests.

View details
Consent (26 vendors)


MEASURE ADVERTISING PERFORMANCE

Information regarding which advertising is presented to you and how you interact
with it can be used to determine how well an advert has worked for you or other
users and whether the goals of the advertising were reached. For instance,
whether you saw an ad, whether you clicked on it, whether it led you to buy a
product or visit a website, etc. This is very helpful to understand the
relevance of advertising campaigns.

View details
Consent (77 vendors)Legitimate interest (47 vendors)help_outline


MEASURE CONTENT PERFORMANCE

Information regarding which content is presented to you and how you interact
with it can be used to determine whether the (non-advertising) content e.g.
reached its intended audience and matched your interests. For instance, whether
you read an article, watch a video, listen to a podcast or look at a product
description, how long you spent on this service and the web pages you visit etc.
This is very helpful to understand the relevance of (non-advertising) content
that is shown to you.

View details
Consent (31 vendors)Legitimate interest (14 vendors)help_outline


UNDERSTAND AUDIENCES THROUGH STATISTICS OR COMBINATIONS OF DATA FROM DIFFERENT
SOURCES

Reports can be generated based on the combination of data sets (like user
profiles, statistics, market research, analytics data) regarding your
interactions and those of other users with advertising or (non-advertising)
content to identify common characteristics (for instance, to determine which
target audiences are more receptive to an ad campaign or to certain contents).

View details
Consent (57 vendors)Legitimate interest (20 vendors)help_outline


DEVELOP AND IMPROVE SERVICES

Information about your activity on this service, such as your interaction with
ads or content, can be very helpful to improve products and services and to
build new products and services based on user interactions, the type of
audience, etc. This specific purpose does not include the development or
improvement of user profiles and identifiers.

View details
Consent (64 vendors)Legitimate interest (38 vendors)help_outline


USE LIMITED DATA TO SELECT CONTENT

Content presented to you on this service can be based on limited data, such as
the website or app you are using, your non-precise location, your device type,
or which content you are (or have been) interacting with (for example, to limit
the number of times a video or an article is presented to you).

View details
Consent (9 vendors)Legitimate interest (2 vendors)help_outline


ENSURE SECURITY, PREVENT AND DETECT FRAUD, AND FIX ERRORS

help_outline

Your data can be used to monitor for and prevent unusual and possibly fraudulent
activity (for example, regarding advertising, ad clicks by bots), and ensure
systems and processes work properly and securely. It can also be used to correct
any problems you, the publisher or the advertiser may encounter in the delivery
of content and ads and in your interaction with them.

View details


DELIVER AND PRESENT ADVERTISING AND CONTENT

help_outline

Certain information (like an IP address or device capabilities) is used to
ensure the technical compatibility of the content or advertising, and to
facilitate the transmission of the content or ad to your device.

View details


MATCH AND COMBINE DATA FROM OTHER DATA SOURCES

help_outline

Information about your activity on this service may be matched and combined with
other information relating to you and originating from various sources (for
instance your activity on a separate online service, your use of a loyalty card
in-store, or your answers to a survey), in support of the purposes explained in
this notice.

View details


LINK DIFFERENT DEVICES

help_outline

In support of the purposes explained in this notice, your device might be
considered as likely linked to other devices that belong to you or your
household (for instance because you are logged in to the same service on both
your phone and your computer, or because you may use the same Internet
connection on both devices).

View details


IDENTIFY DEVICES BASED ON INFORMATION TRANSMITTED AUTOMATICALLY

help_outline

Your device might be distinguished from other devices based on information it
automatically sends when accessing the Internet (for instance, the IP address of
your Internet connection or the type of browser you are using) in support of the
purposes exposed in this notice.

View details


USE PRECISE GEOLOCATION DATA

With your acceptance, your precise location (within a radius of less than 500
metres) may be used in support of the purposes explained in this notice.

View details
Consent

You can choose your data preferences. This site or app wants your permission to
do the following:

Site or app


STORE AND/OR ACCESS INFORMATION ON A DEVICE

Cookies, device or similar online identifiers (e.g. login-based identifiers,
randomly assigned identifiers, network based identifiers) together with other
information (e.g. browser type and information, language, screen size, supported
technologies etc.) can be stored or read on your device to recognise it each
time it connects to an app or to a website, for one or several of the purposes
presented here.

View details
Consent


USE LIMITED DATA TO SELECT ADVERTISING

Advertising presented to you on this service can be based on limited data, such
as the website or app you are using, your non-precise location, your device type
or which content you are (or have been) interacting with (for example, to limit
the number of times an ad is presented to you).

View details
Consent


CREATE PROFILES FOR PERSONALISED ADVERTISING

Information about your activity on this service (such as forms you submit,
content you look at) can be stored and combined with other information about you
(for example, information from your previous activity on this service and other
websites or apps) or similar users. This is then used to build or improve a
profile about you (that might include possible interests and personal aspects).
Your profile can be used (also later) to present advertising that appears more
relevant based on your possible interests by this and other entities.

View details
Consent


USE PROFILES TO SELECT PERSONALISED ADVERTISING

Advertising presented to you on this service can be based on your advertising
profiles, which can reflect your activity on this service or other websites or
apps (like the forms you submit, content you look at), possible interests and
personal aspects.

View details
Consent


CREATE PROFILES TO PERSONALISE CONTENT

Information about your activity on this service (for instance, forms you submit,
non-advertising content you look at) can be stored and combined with other
information about you (such as your previous activity on this service or other
websites or apps) or similar users. This is then used to build or improve a
profile about you (which might for example include possible interests and
personal aspects). Your profile can be used (also later) to present content that
appears more relevant based on your possible interests, such as by adapting the
order in which content is shown to you, so that it is even easier for you to
find content that matches your interests.

View details
Consent


USE PROFILES TO SELECT PERSONALISED CONTENT

Content presented to you on this service can be based on your content
personalisation profiles, which can reflect your activity on this or other
services (for instance, the forms you submit, content you look at), possible
interests and personal aspects, such as by adapting the order in which content
is shown to you, so that it is even easier for you to find (non-advertising)
content that matches your interests.

View details
Consent

Vendor preferences

Accept all



Confirm choices

arrow_back

Vendor preferences


CONFIRM OUR VENDORS

Vendors can use your data to provide services. Declining a vendor can stop them
from using the data you shared.

TCF vendors

help_outline


EXPONENTIAL INTERACTIVE, INC D/B/A VDX.TV

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Probabilistic identifiers,
Privacy choices, Users’ profiles, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ROQ.AD GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ADMAXIM LIMITED

Cookie duration: 30 (days).

Data collected and processed: Probabilistic identifiers, IP addresses, Browsing
and interaction data

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


INDEX EXCHANGE INC.

Cookie duration: 395 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Precise location data, IP addresses, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


QUANTCAST

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BEESWAXIO CORPORATION

Cookie duration: 395 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SOVRN, INC.

Cookie duration: 365 (days).

Data collected and processed: Device characteristics, Privacy choices, Users’
profiles, IP addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADIKTEEV

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Users’ profiles, Authentication-derived identifiers,
IP addresses, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RTB HOUSE S.A.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


THE UK TRADE DESK LTD

Cookie duration: 3629 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, IP addresses, Browsing and interaction
data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADMETRICS GMBH

Doesn't use cookies.

Data collected and processed: Device characteristics, Privacy choices, IP
addresses, Browsing and interaction data

more




View details | Privacy policylaunch
Consent


AMOBEE INC.

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EPSILON

Cookie duration: 184 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


YAHOO EMEA LIMITED

Cookie duration: 397 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, IP addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADVENTORI SAS

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Authentication-derived
identifiers, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TRIPLELIFT, INC.

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, Authentication-derived
identifiers, IP addresses, Browsing and interaction data, Non-precise location
data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


XANDR, INC.

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, Authentication-derived
identifiers, IP addresses, Browsing and interaction data, Non-precise location
data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEORY GMBH

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


UNRULY GROUP LLC

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEURAL.ONE

Cookie duration: 365 (days).

Data collected and processed: Device characteristics, Probabilistic identifiers,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADITION (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ACTIVE AGENT (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TABOOLA EUROPE LIMITED

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EQUATIV

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, IP addresses, Browsing and interaction
data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADFORM A/S

Cookie duration: 1 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE, INC.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RATEGAIN ADARA INC

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SIFT MEDIA, INC

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Precise location data, IP addresses, Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RAKUTEN MARKETING LLC

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LUMEN RESEARCH LIMITED

Doesn't use cookies.

Data collected and processed: Device characteristics, IP addresses, Browsing and
interaction data, Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


AMAZON AD SERVER

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OPENX

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


YIELDLAB (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, User-provided data, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ROKU ADVERTISING SERVICES

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SIMPLIFI HOLDINGS INC

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Precise location data, IP
addresses

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


PUBMATIC, INC

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


COMSCORE B.V.

Cookie duration: 720 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


FLASHTALKING

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PULSEPOINT, INC.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics, IP
addresses

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SMAATO, INC.

Cookie duration: 21 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, Authentication-derived
identifiers, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SEMASIO GMBH

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Privacy choices, IP addresses,
Browsing and interaction data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CRIMTAN HOLDINGS LIMITED

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GENIUS SPORTS UK LIMITED

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


CRITEO SA

Cookie duration: 390 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADLOOX SA

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BLIS GLOBAL LIMITED

Cookie duration: 400 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LOTAME SOLUTIONS, INC

Cookie duration: 274 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


LIVERAMP

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Authentication-derived identifiers, IP addresses, Browsing and
interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GROUPM UK LIMITED

Cookie duration: 395 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LOOPME LIMITED

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DYNATA LLC

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ASK LOCALA

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Precise location data, IP addresses, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEAR INTELLIGENCE

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Precise location data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DOUBLEVERIFY INC.

Doesn't use cookies.

Data collected and processed: Device characteristics, Probabilistic identifiers,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BIDSWITCH GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


IPONWEB GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Authentication-derived identifiers, User-provided data, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NEXTROLL, INC.

Cookie duration: 183 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, User-provided data, IP addresses, Browsing and
interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TEADS FRANCE SAS

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


STRÖER SSP GMBH (SSP)

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OS DATA SOLUTIONS GMBH &AMP; CO. KG

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, User-provided data,
IP addresses, Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PERMODO GMBH

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, IP addresses, Browsing and interaction data,
Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PLATFORM161 B.V.

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, IP addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADACADO TECHNOLOGIES INC. (DBA ADACADO)

Cookie duration: 365 (days).

Data collected and processed: Privacy choices, IP addresses, Browsing and
interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BASIS GLOBAL TECHNOLOGIES, INC.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, Authentication-derived
identifiers, IP addresses, Browsing and interaction data, Non-precise location
data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SMADEX, S.L.U.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, User-provided data,
IP addresses, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BOMBORA INC.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics, Users’
profiles, Authentication-derived identifiers, IP addresses, Browsing and
interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EASYMEDIA GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, IP addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


REMERGE GMBH

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics, IP
addresses, Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADVANCED STORE GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE CTV, INC.

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data, IP addresses,
Browsing and interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DELTA PROJECTS AB

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


USEMAX ADVERTISEMENT (EMEGO GMBH)

Cookie duration: 365 (days).

Data collected and processed: Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EMETRIQ GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


PUBLICIS MEDIA GMBH

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


M.D. PRIMIS TECHNOLOGIES LTD.

Cookie duration: 25 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ONETAG LIMITED

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


CLOUD TECHNOLOGIES S.A.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SMARTOLOGY LIMITED

Doesn't use cookies.

Data collected and processed: IP addresses

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


IMPROVE DIGITAL

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADOBE ADVERTISING CLOUD

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Privacy choices,
Authentication-derived identifiers, IP addresses

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BANNERFLOW AB

Cookie duration: 366 (days).

Data collected and processed: IP addresses

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TABMO SAS

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


INTEGRAL AD SCIENCE (INCORPORATING ADMANTX)

Doesn't use cookies.

Data collected and processed: Device characteristics, Privacy choices, IP
addresses, Browsing and interaction data, Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


WIZALY

Cookie duration: 365 (days).

Data collected and processed: Device characteristics, Privacy choices,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


WEBORAMA

Cookie duration: 393 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


JIVOX CORPORATION

Cookie duration: 30 (days).

Data collected and processed: Device identifiers, Privacy choices, Users’
profiles, Precise location data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MOBILE PROFESSIONALS BV / SAGE&AMP;ARCHER BV

Doesn't use cookies.

Data collected and processed: Non-precise location data

more




View details | Privacy policylaunch
Consent


ON DEVICE RESEARCH LIMITED

Cookie duration: 30 (days).

Data collected and processed: Device identifiers, Device characteristics,
Precise location data, User-provided data, IP addresses, Browsing and
interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
Consent


ROCKABOX MEDIA LTD

Doesn't use cookies.

Data collected and processed: Device characteristics, IP addresses, Browsing and
interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EXACTAG GMBH

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Authentication-derived identifiers, IP addresses, Browsing and
interaction data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CELTRA INC.

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Precise location data, IP addresses

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAINADV SRL

Cookie duration: 30 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, User-provided data, IP addresses, Browsing and interaction
data, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GEMIUS SA

Cookie duration: 1825 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Browsing and interaction data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


THE KANTAR GROUP LIMITED

Cookie duration: 914 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


NIELSEN MEDIA RESEARCH LTD.

Cookie duration: 120 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SOLOCAL SA

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, User-provided data, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PIXALATE, INC.

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics, IP
addresses, Browsing and interaction data, Non-precise location data

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ORACLE ADVERTISING

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, Browsing and interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NUMBERLY

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


AUDIENCEPROJECT APS

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DEMANDBASE, INC.

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EFFILIATION / EFFINITY

Cookie duration: 2 (days).

Data collected and processed: Device characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


SEENTHIS AB

Doesn't use cookies.

Data collected and processed: Device characteristics, IP addresses

more




View details | Privacy policylaunch


COMMANDERS ACT

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, IP addresses

more




View details | Storage details | Privacy policylaunch
Consent


TRAVEL AUDIENCE GMBH

Cookie duration: 397 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Users’ profiles, Precise location data,
Authentication-derived identifiers, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


HUMAN

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, IP addresses, Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BLENDEE SRL

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


INNOVID LLC

Cookie duration: 90 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data, Non-precise
location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PAPIRFLY AS

Doesn't use cookies.

Data collected and processed: Device characteristics

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEUSTAR, INC., A TRANSUNION COMPANY

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles,
Authentication-derived identifiers, User-provided data, IP addresses, Browsing
and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SALESFORCE.COM, INC.

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


VERVE GROUP EUROPE GMBH

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Precise location data, Authentication-derived
identifiers, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OTTO (GMBH &AMP; CO KG)

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Privacy choices, Users’
profiles, User-provided data, IP addresses, Browsing and interaction data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADOBE AUDIENCE MANAGER, ADOBE EXPERIENCE PLATFORM

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, Authentication-derived identifiers, User-provided data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LOCALSENSOR B.V.

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Precise location data, IP addresses, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


ONLINE SOLUTION

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, Precise location
data, User-provided data, IP addresses, Browsing and interaction data,
Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RELAY42 NETHERLANDS B.V.

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, User-provided data,
IP addresses, Browsing and interaction data

more




View details | Storage details | Privacy policylaunch
Consent


GP ONE GMBH

Cookie duration: Uses session cookies.

Data collected and processed: Device characteristics, Privacy choices,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LIFTOFF MOBILE, INC.

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, IP addresses, Browsing and
interaction data, Non-precise location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


THE MEDIAGRID INC.

Cookie duration: 365 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Precise location data, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MINDTAKE RESEARCH GMBH

Cookie duration: 180 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Users’ profiles, IP addresses, Browsing and
interaction data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


CINT AB

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GOOGLE ADVERTISING PRODUCTS

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GFK SE

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers,
User-provided data, IP addresses, Browsing and interaction data, Non-precise
location data

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


REVJET

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Privacy choices, Users’
profiles, IP addresses, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PROTECTED MEDIA LTD

Doesn't use cookies.

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, IP addresses, Browsing and interaction data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


CLINCH LABS LTD

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Probabilistic identifiers, Privacy choices, Users’ profiles, IP addresses,
Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ORACLE DATA CLOUD - MOAT

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


HEARTS AND SCIENCE MÜNCHEN GMBH

Cookie duration: 60 (days).

Data collected and processed: IP addresses

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


AMAZON ADVERTISING

Cookie duration: 396 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Users’ profiles, Authentication-derived identifiers, IP
addresses, Browsing and interaction data, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MOLOCO, INC.

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics, IP
addresses, Non-precise location data

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADTRIBA GMBH

Cookie duration: 730 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, Authentication-derived identifiers, IP addresses, Browsing and
interaction data, Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


OBJECTIVE PARTNERS BV

Cookie duration: 90 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ENSIGHTEN

Cookie duration: 1825 (days).

Data collected and processed: Device identifiers, Device characteristics,
Privacy choices, IP addresses, Browsing and interaction data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EBAY INC

Cookie duration: 90 (days).

Data collected and processed: Device characteristics, Privacy choices, IP
addresses

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


HURRA COMMUNICATIONS GMBH

Cookie duration: 366 (days).

Data collected and processed: Device identifiers, Device characteristics,
Precise location data, Authentication-derived identifiers, IP addresses,
Non-precise location data

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline

Ad partners

help_outline


GSKINNER

Privacy policylaunch
Consent


AKAMAI

Privacy policylaunch
Consent


FACEBOOK

Privacy policylaunch
Consent


AUNICA

Privacy policylaunch
Consent


BOOKING.COM

Privacy policylaunch
Consent


C3 METRICS

Privacy policylaunch
Consent


IBM

Privacy policylaunch
Consent


EVIDON

Privacy policylaunch
Consent


CUBED

Privacy policylaunch
Consent


OPTOMATON

Privacy policylaunch
Consent


INTELLIAD

Privacy policylaunch
Consent


ANALIGHTS

Privacy policylaunch
Consent


DSTILLERY

Privacy policylaunch
Consent


MEDIAMATH

Privacy policylaunch
Consent


DMA INSTITUTE

Privacy policylaunch
Consent


ZMS

Privacy policylaunch
Consent


DENTSU AEGIS NETWORK

Privacy policylaunch
Consent


IGNITION ONE

Privacy policylaunch
Consent


OMNICOM MEDIA GROUP

Privacy policylaunch
Consent


DIGISEG

Privacy policylaunch
Consent


RESONATE

Privacy policylaunch
Consent


SOJERN

Privacy policylaunch
Consent


HAENSEL AMS

Privacy policylaunch
Consent


BDSK HANDELS GMBH & CO. KG

Privacy policylaunch
Consent


VIDEOLOGY

Privacy policylaunch
Consent


TRADEDOUBLER AB

Privacy policylaunch
Consent


TRUSTARC

Privacy policylaunch
Consent


TRUEFFECT

Privacy policylaunch
Consent


MARKETING SCIENCE CONSULTING GROUP, INC.

Privacy policylaunch
Consent


DENTSU

Privacy policylaunch
Consent


ESSENS

Privacy policylaunch
Consent


TRAVEL DATA COLLECTIVE

Privacy policylaunch
Consent


ADVOLUTION.CONTROL

Privacy policylaunch
Consent


WIDESPACE

Privacy policylaunch
Consent


LIFESTREET

Privacy policylaunch
Consent


VIMEO

Privacy policylaunch
Consent


BATCH MEDIA

Privacy policylaunch
Consent


VODAFONE GMBH

Privacy policylaunch
Consent


MAGNITE

Privacy policylaunch
Consent


SCENESTEALER

Privacy policylaunch
Consent


NETQUEST

Privacy policylaunch
Consent


MANAGE.COM

Privacy policylaunch
Consent


CLOUDFLARE

Privacy policylaunch
Consent


HAVAS MEDIA FRANCE - DBI

Privacy policylaunch
Consent


NETFLIX

Privacy policylaunch
Consent


MACROMILL GROUP

Privacy policylaunch
Consent


EBUILDERS

Privacy policylaunch
Consent


APPLOVIN CORP.

Privacy policylaunch
Consent


NANO INTERACTIVE

Privacy policylaunch
Consent


FRACTIONAL MEDIA

Privacy policylaunch
Consent


RACKSPACE

Privacy policylaunch
Consent


MSI-ACI

Privacy policylaunch
Consent


ARRIVALIST

Privacy policylaunch
Consent


NAVEGG

Privacy policylaunch
Consent


ADMEDO

Privacy policylaunch
Consent


KOCHAVA

Privacy policylaunch
Consent


MOBITRANS

Privacy policylaunch
Consent


ADEX

Privacy policylaunch
Consent


IMPACT

Privacy policylaunch
Consent


SPOTAD

Privacy policylaunch
Consent


AARKI

Privacy policylaunch
Consent


SFR

Privacy policylaunch
Consent


CABLATO

Privacy policylaunch
Consent


WAYSTACK

Privacy policylaunch
Consent


TRESENSA

Privacy policylaunch
Consent


ADLUDIO

Privacy policylaunch
Consent

Accept all



Confirm choices

Close