From 94580d77d207af3194bbffe230888d7609ff4181 Mon Sep 17 00:00:00 2001 From: BitmediaDevTeam Date: Thu, 16 Jan 2025 21:09:45 +0200 Subject: [PATCH] Bitmedia Bidder Adapter MD : initial release (#5788) * add bitmedia MD * Changes at bitmedia.md * fix eslint errors at bitmedia.md --- dev-docs/bidders/bitmedia.md | 223 +++++++++++++++++++++++++++++++++++ 1 file changed, 223 insertions(+) create mode 100644 dev-docs/bidders/bitmedia.md diff --git a/dev-docs/bidders/bitmedia.md b/dev-docs/bidders/bitmedia.md new file mode 100644 index 0000000000..24ed5e6cc3 --- /dev/null +++ b/dev-docs/bidders/bitmedia.md @@ -0,0 +1,223 @@ +--- +layout: bidder +title: Bitmedia +description: Prebid Bitmedia Bidder Adapter +biddercode: bitmedia +pbjs: true +pbs: false +gvl_id: none +tcfeu_supported: false +usp_supported: false +coppa_supported: false +gpp_sids: none +schain_supported: false +dchain_supported: false +userId: none +media_types: banner +safeframes_ok: true +deals_supported: false +floors_supported: true +fpd_supported: false +ortb_blocking_supported: false +multiformat_supported: will-not-bid +privacy_sandbox: no +prebid_member: false +sidebarType: 1 +--- + + +### Table of Contents + +- [Table of Contents](#table-of-contents) +- [Description](#description) +- [Bid Params](#bid-params) +- [Test Parameters](#test-parameters) +- [Testing Instructions](#testing-instructions) + + + +### Description + +The Bitmedia Bid Adapter allows publishers to integrate with BitmediaIO for banner advertising. + +#### Key Points + +- Supported Media Type: **Banner** +- Bids are only provided in **USD**. +- Access to **local storage** is optional. + +Before using this adapter, simply [create a publisher account](https://bitmedia.io/become-a-publisher) on our platform to obtain your `adUnitID`. + +More about us: [https://bitmedia.io](https://bitmedia.io) + + + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|--------------|----------|------------------------------------|-------------------|----------| +| `adUnitID` | required | The ad unit ID from Bitmedia | `'exampleAdUnitID'` | `string` | +| `currency` | optional | Currency of the bid (default: USD) | `'USD'` | `string` | + + + +## Test Parameters +### Example + +```javascript +var adUnits = [ + { + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [300, 600]], + }, + }, + bids: [{ + bidder: 'bitmedia', + params: { + adUnitID: 'exampleAdUnitID', + currency: 'USD', + }, + }], + }, +]; +``` + +--- + +## Testing Instructions + +The HTML file below can be used to test the integration of the Bitmedia Bid Adapter. + +### Simple Test HTML + +```html + + + + + + + + + + + + + + + + + + +

Ad Serverless Test Page

+ +
+
+
+ + +```