Skip to content
Open
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
1 change: 0 additions & 1 deletion docs/config-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ There are several typical keys:
- `adapters.<BIDDER_NAME>.usersync.redirect-url` - the redirect part of url for synchronizing UIDs cookie.
- `adapters.<BIDDER_NAME>.usersync.cookie-family-name` - the family name by which user ids within adapter's realm are stored in uidsCookie.
- `adapters.<BIDDER_NAME>.usersync.type` - usersync type (i.e. redirect, iframe).
- `adapters.<BIDDER_NAME>.usersync.support-cors` - flag signals if CORS supported by usersync.
- `adapters.<BIDDER_NAME>.debug.allow` - enables debug output in the auction response for the given bidder. Default `true`.
- `adapters.<BIDDER_NAME>.tmax-deduction-ms` - adjusts the tmax sent to the bidder by deducting the provided value (ms). Default `0 ms` - no deduction.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class UsersyncInfoBuilder {
private String usersyncUrl;
private String redirectUrl;
private UsersyncMethodType type;
private Boolean supportCORS;

public static UsersyncInfoBuilder from(UsersyncMethod usersyncMethod) {
final UsersyncInfoBuilder usersyncInfoBuilder = new UsersyncInfoBuilder();
Expand All @@ -23,7 +22,6 @@ public static UsersyncInfoBuilder from(UsersyncMethod usersyncMethod) {
StringUtils.stripToEmpty(usersyncMethod.getRedirectUrl()),
UsersyncUtil.resolveFormat(usersyncMethod));
usersyncInfoBuilder.type = usersyncMethod.getType();
usersyncInfoBuilder.supportCORS = usersyncMethod.isSupportCORS();

return usersyncInfoBuilder;
}
Expand Down Expand Up @@ -88,7 +86,7 @@ public UsersyncInfo build() {
final String resolvedUsersyncUrl = usersyncUrl.replace(
UsersyncInfo.REDIRECT_URL_PLACEHOLDER, resolvedRedirectUrl);

return UsersyncInfo.of(resolvedUsersyncUrl, type, supportCORS);
return UsersyncInfo.of(resolvedUsersyncUrl, type);
}

private static String resolveQueryParams(String redirectUrl) {
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/prebid/server/bidder/UsersyncMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,5 @@ public class UsersyncMethod {

String redirectUrl;

boolean supportCORS;

UsersyncFormat formatOverride;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.prebid.server.proto.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Value;
import org.prebid.server.bidder.UsersyncMethodType;

Expand All @@ -22,7 +21,4 @@ public class UsersyncInfo {
String url;

UsersyncMethodType type;

@JsonProperty("supportCORS")
Boolean supportCORS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.springframework.validation.annotation.Validated;

import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;

@Data
@Validated
Expand All @@ -18,8 +17,5 @@ public class UsersyncMethodConfigurationProperties {

String uidMacro;

@NotNull
Boolean supportCors;

UsersyncFormat formatOverride;
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ private static UsersyncMethod toMethod(UsersyncMethodType type,
.type(type)
.usersyncUrl(Objects.requireNonNull(properties.getUrl()))
.redirectUrl(toRedirectUrl(cookieFamilyName, externalUrl, properties.getUidMacro()))
.supportCORS(properties.getSupportCors())
.formatOverride(properties.getFormatOverride())
.build();
}
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/aax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ adapters:
cookie-family-name: aax
redirect:
url: https://c.aaxads.com/aacxc.php?fv=1&wbsh=psa&ryvlg=setstatuscode&redirect={{redirect_url}}
support-cors: false
uid-macro: '<vsid>'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/acuityads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ adapters:
cookie-family-name: acuityads
redirect:
url: https://cs.admanmedia.com/sync/prebid?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redir={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adagio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ adapters:
cookie-family-name: adagio
iframe:
url: https://u-REGION.4dex.io/pbserver/usync.html?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&&gpp_sid={{gpp_sid}}&r={{redirect_url}}
support-cors: false
uid-macro: '{UID}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ adapters:
cookie-family-name: adf
redirect:
url: https://c1.adform.net/cookie?redirect_url={{redirect_url}}
support-cors: false
uid-macro: '$UID'
3 changes: 0 additions & 3 deletions src/main/resources/bidder-config/adkernel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ adapters:
cookie-family-name: xapads
redirect:
url: https://sync.adkernel.com/user-sync?t=image&zone=284803&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&r={{redirect_url}}
support-cors: false
uid-macro: '{UID}'
iframe:
url: https://sync.adkernel.com/user-sync?t=iframe&zone=284803&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&r={{redirect_url}}
support-cors: false
uid-macro: '{UID}'
meta-info:
maintainer-email: prebid-dev@adkernel.com
Expand All @@ -38,5 +36,4 @@ adapters:
cookie-family-name: adkernel
redirect:
url: https://sync.adkernel.com/user-sync?t=image&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&r={{redirect_url}}
support-cors: false
uid-macro: '{UID}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adkerneladn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ adapters:
cookie-family-name: adkernelAdn
redirect:
url: https://tag.adkernel.com/syncr?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&r={{redirect_url}}
support-cors: false
uid-macro: '${UID}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adman.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ adapters:
cookie-family-name: adman
redirect:
url: https://sync.admanmedia.com/pbs.gif?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redir={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/admixer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ adapters:
cookie-family-name: admixer
redirect:
url: https://inv-nets.admixer.net/adxcm.aspx?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redir=1&rurl={{redirect_url}}
support-cors: false
uid-macro: '$$visitor_cookie$$'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ adapters:
cookie-family-name: adot
redirect:
url: https://sync.adotmob.com/cookie/pbs?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&r={{redirect_url}}
support-cors: false
uid-macro: '{amob_user_id}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adpone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ adapters:
cookie-family-name: adpone
redirect:
url: https://usersync.adpone.com/csync?redir={{redirect_url}}
support-cors: false
uid-macro: '{uid}'
2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/adprime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ adapters:
cookie-family-name: adprime
iframe:
url: https://sync.adprime.com/pbserverIframe?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&ccpa={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&pbserverUrl={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
redirect:
url: https://sync.adprime.com/pbserver?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&ccpa={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&redir={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adquery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ adapters:
cookie-family-name: adquery
iframe:
url: https://api.adquery.io/storage?gdpr={{gdpr}}&consent={{gdpr_consent}}&ccpa_consent={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/adtonos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ adapters:
cookie-family-name: adtonos
redirect:
url: https://play.adtonos.com/redir?to={{redirect_url}}
support-cors: false
uid-macro: '@UUID@'
2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/aduptech.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ adapters:
cookie-family-name: aduptech
iframe:
url: https://rtb.d.adup-tech.com/service/sync?iframe=1&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
redirect:
url: https://rtb.d.adup-tech.com/service/sync?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
target-currency: "EUR"
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/advangelists.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ adapters:
cookie-family-name: advangelists
iframe:
url: https://nep.advangelists.com/xp/user-sync?acctid={aid}&&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
6 changes: 0 additions & 6 deletions src/main/resources/bidder-config/adverxo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ adapters:
iframe:
url: https://cittamatra.com/usync?type=iframe&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
uid-macro: '$UID'
support-cors: false
redirect:
url: https://cittamatra.com/usync?type=image&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
uid-macro: '$UID'
support-cors: false
bidsmind:
enabled: false
endpoint: https://bidsmind.pbsadverxo.com/auction?id={{adUnitId}}&auth={{auth}}
Expand All @@ -26,11 +24,9 @@ adapters:
iframe:
url: https://taetee.com/usync?type=iframe&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
uid-macro: '$UID'
support-cors: false
redirect:
url: https://taetee.com/usync?type=image&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
uid-macro: '$UID'
support-cors: false
meta-info:
maintainer-email: developer@adverxo.com
app-media-types:
Expand All @@ -47,10 +43,8 @@ adapters:
cookie-family-name: adverxo
iframe:
url: https://pbsadverxo.com/usync?type=iframe&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
redirect:
url: https://pbsadverxo.com/usync?type=image&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'

2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/adyoulike.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ adapters:
cookie-family-name: adyoulike
iframe:
url: https://visitor.omnitagjs.com/visitor/isync?uid=19340f4f097d16f41f34fc0274981ca4&name=PrebidServer&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&url={{redirect_url}}
support-cors: false
uid-macro: '[BUYER_USERID]'
redirect:
url: https://visitor.omnitagjs.com/visitor/bsync?uid=19340f4f097d16f41f34fc0274981ca4&name=PrebidServer&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&url={{redirect_url}}
support-cors: false
uid-macro: '[BUYER_USERID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/aidem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ adapters:
cookie-family-name: aidem
redirect:
url: https://gum.aidemsrv.com/prebid_sync?gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/aja.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ adapters:
cookie-family-name: aja
redirect:
url: https://ad.as.amanad.adtdp.com/v1/sync/ssp?ssp=4&gdpr={{gdpr}}&us_privacy={{us_privacy}}&redir={{redirect_url}}
support-cors: false
uid-macro: '%s'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/alkimi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ adapters:
cookie-family-name: alkimi
redirect:
url: https://user-sync.alkimi-onboarding.com/ssp-sync?gdpr={{gdpr}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '${UID}'
2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/amx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ adapters:
cookie-family-name: amx
redirect:
url: https://prebid.a-mo.net/cchain/0?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&cb={{redirect_url}}
support-cors: false
uid-macro: "$UID"
iframe:
url: https://prebid.a-mo.net/isyn?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&s=pbs&cb={{redirect_url}}
uid-macro: "$UID"
support-cors: false
2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/apacdex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ adapters:
cookie-family-name: apacdex
iframe:
url: https://sync.quantumdex.io/usersync/pbs?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&r={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
redirect:
url: https://sync.quantumdex.io/getuid?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&r={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/appnexus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ adapters:
cookie-family-name: adnxs
redirect:
url: https://ib.adnxs.com/getuid?{{redirect_url}}
support-cors: false
uid-macro: '$UID'
platform-id: 5
iab-categories:
Expand Down
4 changes: 0 additions & 4 deletions src/main/resources/bidder-config/aso.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ adapters:
cookie-family-name: bcmint
redirect:
url: https://track.datacygnal.io/sync/v2?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&usp={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&redir={{redirect_url}}
support-cors: false
uid-macro: '{uid}'
bidagency:
enabled: false
Expand All @@ -22,7 +21,6 @@ adapters:
cookie-family-name: bidagency
redirect:
url: https://track.bidgx.com/sync/v2?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&usp={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&redir={{redirect_url}}
support-cors: false
uid-macro: '{uid}'
kuantyx:
enabled: false
Expand All @@ -33,7 +31,6 @@ adapters:
cookie-family-name: kuantyx
redirect:
url: https://track.kntxy.com/sync/v2?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&usp={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&redir={{redirect_url}}
support-cors: false
uid-macro: '{uid}'
meta-info:
maintainer-email: support@adsrv.org
Expand All @@ -50,5 +47,4 @@ adapters:
cookie-family-name: aso
redirect:
url: https://track.aso1.net/sync/v2?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&usp={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}}&redir={{redirect_url}}
support-cors: false
uid-macro: '{uid}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/avocet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ adapters:
cookie-family-name: avocet
redirect:
url: https://ads.avct.cloud/getuid?&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&url={{redirect_url}}
support-cors: false
uid-macro: '{{UUID}}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/axis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ adapters:
cookie-family-name: axis
redirect:
url: https://cs.axis-marketplace.com/pbserver?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&ccpa={{us_privacy}}&redir={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/axonix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ adapters:
usersync:
cookie-family-name: axonix
redirect:
support-cors: false
url: https://openrtb-us-east-1.axonix.com/syn?redirect={{redirect_url}}
uid-macro: 'xxEMODO_IDxx'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/beachfront.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ adapters:
cookie-family-name: beachfront
iframe:
url: https://sync.bfmio.com/sync_s2s?gdpr={{gdpr}}&url={{redirect_url}}
support-cors: false
uid-macro: '[io_cid]'
video-endpoint: https://reachms.bfmio.com/bid.json?exchange_id=
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/beintoo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ adapters:
cookie-family-name: beintoo
iframe:
url: https://ib.beintoo.com/um?ssp=pbs&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/between.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ adapters:
cookie-family-name: between
redirect:
url: https://ads.betweendigital.com/match?bidder_id=pbs&gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&callback_url={{redirect_url}}
support-cors: false
uid-macro: '${USER_ID}'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/bidmyadz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ adapters:
cookie-family-name: bidmyadz
redirect:
url: https://cookie-sync.bidmyadz.com/c0f68227d14ed938c6c49f3967cbe9bc?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&ccpa={{us_privacy}}&red={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/bidtheatre.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ adapters:
cookie-family-name: bidtheatre
redirect:
url: https://match.adsby.bidtheatre.com/prebidmatch?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&redir={{redirect_url}}
support-cors: false
uid-macro: '$UID'
2 changes: 0 additions & 2 deletions src/main/resources/bidder-config/bliink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ adapters:
cookie-family-name: bliink
redirect:
url: https://cookiesync.api.bliink.io/getuid?gdpr={{gdpr}}&consent={{gdpr_consent}}&us_privacy={{us_privacy}}&url={{redirect_url}}
support-cors: false
uid-macro: '$UID'
iframe:
url: https://tag.bliink.io/usersync.html?gdpr={{gdpr}}&gdprConsent={{gdpr_consent}}&uspConsent={{us_privacy}}&redirect={{redirect_url}}
support-cors: false
uid-macro: '$UID'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/blis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ adapters:
cookie-family-name: blis
redirect:
url: https://tr.blismedia.com/v1/api/sync/prebid?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&r={{redirect_url}}
support-cors: false
uid-macro: '%%BLIS_USER_TOKEN%%'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/boldwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ adapters:
usersync:
cookie-family-name: boldwin
redirect:
support-cors: false
url: https://sync.videowalldirect.com/pbserver?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&ccpa={{us_privacy}}&redir={{redirect_url}}
uid-macro: '[UID]'
1 change: 0 additions & 1 deletion src/main/resources/bidder-config/colossus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ adapters:
cookie-family-name: colossus
redirect:
url: https://sync.colossusssp.com/pbs.gif?gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&redir={{redirect_url}}
support-cors: false
uid-macro: '[UID]'
Loading
Loading