Skip to content

Commit

Permalink
TripleLift adapter: Always use secure endpoint (#4028)
Browse files Browse the repository at this point in the history
* Update contact

Update contact for TL updates/Prebid Q&A

* Always Secure

Fix STR_ENDPOINT to always go to tlx secure endpoint

* Update test to always_secure

* Update tripleliftBidAdapter.md
  • Loading branch information
cdsmith16 authored and bretg committed Jul 28, 2019
1 parent 60d4aba commit 9ec63c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/tripleliftBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { registerBidder } from '../src/adapters/bidderFactory';
import * as utils from '../src/utils';

const BIDDER_CODE = 'triplelift';
const STR_ENDPOINT = document.location.protocol + '//tlx.3lift.com/header/auction?';
const STR_ENDPOINT = 'https://tlx.3lift.com/header/auction?';
let gdprApplies = true;
let consentString = null;

Expand Down
2 changes: 1 addition & 1 deletion modules/tripleliftBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```
Module Name: Triplelift Bid Adapter
Module Type: Bidder Adapter
Maintainer: bzellman@triplelift.com
Maintainer: csmith+s2s@triplelift.com
```

# Description
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/tripleliftBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { newBidder } from 'src/adapters/bidderFactory';
import { deepClone } from 'src/utils';
import prebid from '../../../package.json';

const ENDPOINT = document.location.protocol + '//tlx.3lift.com/header/auction?';
const ENDPOINT = 'https://tlx.3lift.com/header/auction?';

describe('triplelift adapter', function () {
const adapter = newBidder(tripleliftAdapterSpec);
Expand Down

0 comments on commit 9ec63c6

Please sign in to comment.