@@ -3,16 +3,15 @@ layout: bidder
33title : Yandex
44description : Prebid Yandex Bidder Adapter
55pbjs : true
6- pbs : true
76biddercode : yandex
8- media_types : banner, native
7+ media_types : banner
98sidebarType : 1
109privacy_sandbox : topics
1110---
1211
1312### Prebid Client
1413
15- This Adapter integrates with Yandex's ad services.
14+ This Adapter integrates with Yandex's ad services. Please reach out to < prebid@yandex-team.com > for the integration guide and more details.
1615
1716{: .alert.alert-info :}
1817For detailed auction analytics, check out our [ Analytics Adapter] ( /dev-docs/analytics/yandex.html ) .
@@ -35,10 +34,10 @@ To improve the personalization of ads for publishers’ users, check out our [Us
3534``` js
3635// Simple banner
3736const adUnits = [{
38- code: ' banner -1' ,
37+ code: ' adunit -1' ,
3938 mediaTypes: {
4039 banner: {
41- sizes: [[240 , 400 ]],
40+ sizes: [[300 , 250 ]],
4241 }
4342 },
4443 bids: [
@@ -51,50 +50,6 @@ const adUnits = [{
5150 }
5251 ]
5352}];
54-
55- // Native
56- const adUnits = [{
57- code: ' native-1' ,
58- mediaTypes: {
59- native: {
60- ortb: {
61- assets: [{
62- id: 1 ,
63- required: 1 ,
64- img: {
65- type: 3 ,
66- w: 300 ,
67- h: 300 ,
68- }
69- },
70- {
71- id: 2 ,
72- required: 1 ,
73- title: {
74- len: 80
75- }
76- },
77- {
78- id: 3 ,
79- required: 1 ,
80- data: {
81- type: 1
82- }
83- }
84- ]
85- }
86- }
87- },
88- bids: [
89- {
90- bidder: ' yandex' ,
91- params: {
92- placementId: ' R-A-346580-140' , // native adunit ID
93- cur: ' USD' // EUR, TRY, etc.
94- },
95- }
96- ]
97- }];
9853```
9954
10055#### Topics Iframe Configuration
@@ -115,39 +70,3 @@ pbjs.setConfig({
11570 }
11671})
11772```
118-
119- ### Prebid Server
120-
121- {: .alert.alert-info :}
122- We maintain both ** PBS Java** and ** PBS Go** adapters, but ** PBS Go** is recommended for integration and will receive updates first
123-
124- #### Server Bid Params
125-
126- These params are basically the same that you'd use for
127-
128- {: .table .table-bordered .table-striped }
129- | Name | Scope | Description | Example | Type | Supported in |
130- | -------------- | --------------------------------------------------- | ---------------------------------- | --------------- | --------- | ---------------- |
131- | ` placement_id ` | required | Ad unit ID. Prebid versions > 7.30 | ` R-A-1234567-1 ` | ` String ` | PBS Go |
132- | ` page_id ` | optional, ** deprecated** in favor of ` placement_id ` | Page ID | ` 123 ` | ` Integer ` | PBS Go, PBS Java |
133- | ` imp_id ` | optional, ** deprecated** in favor of ` placement_id ` | Imp ID | ` 1 ` | ` Integer ` | PBS Go, PBS Java |
134-
135- #### Prebid Server Test Request
136-
137- The following test parameters can be used to verify that Prebid Server is working properly with the
138- server-side adapter.
139-
140- ``` json
141- "imp" : [{
142- "id" : " imp_id" ,
143- "banner" : {
144- "w" : 300 ,
145- "h" : 600
146- },
147- "ext" : {
148- "bidder" : {
149- "placement_id" : " R-A-1234567-1"
150- }
151- }
152- }]
153- ```
0 commit comments