Skip to content

Adagio Bid Adapter: remove useless field in adRequest #10207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions modules/adagioBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { userSync } from '../src/userSync.js';
const BIDDER_CODE = 'adagio';
const LOG_PREFIX = 'Adagio:';
const FEATURES_VERSION = '1';
export const ENDPOINT = 'https://mp.4dex.io/prebid';
export const ENDPOINT = 'http://127.0.0.1:8080/prebid';
const SUPPORTED_MEDIA_TYPES = [BANNER, NATIVE, VIDEO];
const ADAGIO_TAG_URL = 'https://script.4dex.io/localstore.js';
const ADAGIO_LOCALSTORAGE_KEY = 'adagioScript';
Expand Down Expand Up @@ -1133,7 +1133,6 @@ export const spec = {
method: 'POST',
url: ENDPOINT,
data: {
id: generateUUID(),
organizationId: organizationId,
secure: secure,
device: device,
Expand Down
1 change: 0 additions & 1 deletion test/spec/modules/adagioBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ describe('Adagio bid adapter', () => {

describe('buildRequests()', function() {
const expectedDataKeys = [
'id',
'organizationId',
'secure',
'device',
Expand Down