You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
accountId:"219"//test accountId, please replace after test
62
+
params: {
63
+
accountId:"#{accountId}"//replace with your accountId
65
64
}
66
65
}]
67
66
}];
@@ -77,11 +76,10 @@ var adUnits = [{
77
76
sizes: [[300, 250]]
78
77
}
79
78
},
80
-
// Replace this object to test a new Adapter!
81
79
bids: [{
82
80
bidder:'mgid',
83
-
params: {
84
-
accountId:"219"//test accountId, please replace after test
81
+
params: {
82
+
accountId:"#{accountId}"//replace with your accountId
85
83
}
86
84
}]
87
85
}];
@@ -107,16 +105,15 @@ var adUnits = [{
107
105
required:true,
108
106
len:80
109
107
},
110
-
sponsored: {
108
+
sponsoredBy: {
111
109
required:false
112
110
}
113
111
}
114
112
},
115
-
// Replace this object to test a new Adapter!
116
113
bids: [{
117
114
bidder:'mgid',
118
-
params: {
119
-
accountId:"219"//test accountId, please replace after test
115
+
params: {
116
+
accountId:"#{accountId}"//replace with your accountId
120
117
}
121
118
}]
122
119
}];
@@ -147,10 +144,11 @@ For Prebid.js v1.14.0 and before:
147
144
148
145
```javascript
149
146
pbjs.setConfig({
150
-
userSync: {
147
+
userSync: {
151
148
iframeEnabled:true,
152
149
enabledBidders: ['mgid']
153
-
}});
150
+
}
151
+
});
154
152
```
155
153
156
154
Note: Combine the above configuration with any other UserSync configuration. Multiple setConfig() calls overwrite each other and only the last call for a given attribute will take effect.
0 commit comments