From 96b28c74b4150f55387d7dfc613b3b320690d412 Mon Sep 17 00:00:00 2001 From: zhoubing01 Date: Fri, 16 Jan 2026 17:23:34 +0800 Subject: [PATCH 1/3] New Adapter: iqiyi --- dev-docs/bidders/iqiyi.md | 130 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 dev-docs/bidders/iqiyi.md diff --git a/dev-docs/bidders/iqiyi.md b/dev-docs/bidders/iqiyi.md new file mode 100644 index 0000000000..904868b1d1 --- /dev/null +++ b/dev-docs/bidders/iqiyi.md @@ -0,0 +1,130 @@ +--- +layout: bidder +title: Iqiyi +description: Prebid Iqiyi Bidder Adapter +biddercode: iqiyi +tcfeu_supported: false +coppa_supported: false +schain_supported: false +media_types: banner, video, native +safeframes_ok: true +deals_supported: false +pbjs: false +pbs: true +pbs_app_supported: true +prebid_member: false +multiformat_supported: will-bid-on-any +--- + +### Registration + +The Iqiyi bidding adapter requires setup before beginning. Please contact the Iqiyi team at adsglobal@qiyi.com. + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|-------------------------------------------------------|-------------|----------| +| `accountid` | required | The account ID provided by Iqiyi. Please contact the Iqiyi team to get your account ID. | `'100000099'` | `string` | + +### Test Parameters + +```javascript +var adUnits = [ + // Banner adUnit + { + code: 'test-div', + mediaTypes: { + banner: { + sizes: [[300, 250]], // a display size + } + }, + bids: [ + { + bidder: "iqiyi", + params: { + accountid: "100000099" + } + } + ] + }, + // Video adUnit + { + code: 'div-1', + mediaTypes: { + video: { + context: 'outstream', + playerSize: [[640, 360]], + mimes: ['video/mp4'], + }, + }, + bids: [ + { + bidder: 'iqiyi', + params: { + accountid: '100000099', + }, + }, + ], + }, + // Native adUnit + { + code: 'div-2', + mediaTypes: { + native: { + title: { + required: true, + len: 80 + }, + body: { + required: true + }, + image: { + required: true, + sizes: [150, 50] + }, + sponsoredBy: { + required: true + }, + clickUrl: { + required: false + }, + privacyLink: { + required: false + } + } + }, + bids: [ + { + bidder: 'iqiyi', + params: { + accountid: '100000099', + }, + }, + ], + }, + // Multi-format adUnit + { + code: 'div-3', + mediaTypes: { + banner: { + sizes: [[300, 250]] + }, + video: { + context: 'outstream', + playerSize: [[640, 360]], + mimes: ['video/mp4'], + }, + }, + bids: [ + { + bidder: 'iqiyi', + params: { + accountid: '100000099', + }, + }, + ], + }, +]; +``` + From 9d6a14924a24cb6912126328a1d96ebfd5d05f9b Mon Sep 17 00:00:00 2001 From: zhoubing01 Date: Fri, 16 Jan 2026 17:39:08 +0800 Subject: [PATCH 2/3] fix --- dev-docs/bidders/iqiyi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/iqiyi.md b/dev-docs/bidders/iqiyi.md index 904868b1d1..912fb1523e 100644 --- a/dev-docs/bidders/iqiyi.md +++ b/dev-docs/bidders/iqiyi.md @@ -18,7 +18,7 @@ multiformat_supported: will-bid-on-any ### Registration -The Iqiyi bidding adapter requires setup before beginning. Please contact the Iqiyi team at adsglobal@qiyi.com. +The Iqiyi bidding adapter requires setup before beginning. Please contact the Iqiyi team at . ### Bid Params From 2f81dac0e4657ef30c13efdbc5f75259f2ed1397 Mon Sep 17 00:00:00 2001 From: Heihuang <375479794@qq.com> Date: Fri, 16 Jan 2026 17:45:16 +0800 Subject: [PATCH 3/3] fix format --- dev-docs/bidders/iqiyi.md | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-docs/bidders/iqiyi.md b/dev-docs/bidders/iqiyi.md index 912fb1523e..f519d2cca8 100644 --- a/dev-docs/bidders/iqiyi.md +++ b/dev-docs/bidders/iqiyi.md @@ -127,4 +127,3 @@ var adUnits = [ }, ]; ``` -