Skip to content

Commit

Permalink
Change BeOp endpoint to get bid responses
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrobert committed Aug 6, 2021
1 parent 815ce64 commit 96cd49d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/beopBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as utils from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { config } from '../src/config.js';
const BIDDER_CODE = 'beop';
const ENDPOINT_URL = 'https://s.beop.io/bid';
const ENDPOINT_URL = 'https://hb.beop.io/bid';
const TCF_VENDOR_ID = 666;

const validIdRegExp = /^[0-9a-fA-F]{24}$/
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/beopBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { spec } from 'modules/beopBidAdapter.js';
import { newBidder } from 'src/adapters/bidderFactory.js';
const utils = require('src/utils');

const ENDPOINT = 'https://s.beop.io/bid';
const ENDPOINT = 'https://hb.beop.io/bid';

let validBid = {
'bidder': 'beop',
Expand Down

0 comments on commit 96cd49d

Please sign in to comment.