Skip to content

Commit 992be7d

Browse files
s-solodovnikovOleksandr Solodovnikov
andauthored
Aniview Bid Adapter: Added example of User Sync configuration (prebid#6022)
* Added example of User Sync configuration * Added new line to the end of the file --------- Co-authored-by: Oleksandr Solodovnikov <o.i.solodovnikov@globallogic.com>
1 parent 9f5409c commit 992be7d

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

dev-docs/bidders/aniview.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,29 @@ pbjs.setBidderConfig({
127127
},
128128
}, true);
129129
```
130+
131+
### User Sync example
132+
133+
```javascript
134+
pbjs.setConfig({
135+
userSync: {
136+
filterSettings: {
137+
// Iframe and Image
138+
all: {
139+
bidders: ['aniview'],
140+
filter: 'include',
141+
},
142+
143+
// Or you can specify which type should be enabled/disabled:
144+
iframe: {
145+
bidders: ['aniview'],
146+
filter: 'include',
147+
},
148+
image: {
149+
bidders: '*', // '*' represents all bidders
150+
filter: 'include', // or 'exclude'
151+
},
152+
},
153+
},
154+
});
155+
```

0 commit comments

Comments
 (0)