-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## Type of change | ||
Check failure on line 1 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintFirst line in a file should be a top-level heading
|
||
New bidder adapter | ||
|
||
|
||
Check failure on line 4 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintMultiple consecutive blank lines
|
||
**Module Name**: Greenbids Bidder Adapter | ||
**Module Type**: Bidder Adapter | ||
**Maintainer**: [email protected] | ||
Check failure on line 7 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintBare URL used
|
||
|
||
# Description | ||
|
||
Use `greenbids` as bidder. | ||
|
||
## AdUnits configuration example | ||
``` | ||
Check failure on line 14 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintFenced code blocks should be surrounded by blank lines
Check failure on line 14 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintFenced code blocks should have a language specified
|
||
var adUnits = [{ | ||
code: 'your-slot_1-div', //use exactly the same code as your slot div id. | ||
sizes: [[300, 250]], | ||
bids: [{ | ||
bidder: 'greenbids', | ||
params: { | ||
gbPlacementId: 12345, | ||
} | ||
}] | ||
},{ | ||
code: 'your-slot_2-div', //use exactly the same code as your slot div id. | ||
sizes: [[600, 800]], | ||
bids: [{ | ||
bidder: 'greenbids', | ||
params: { | ||
placementId: 12345, | ||
} | ||
}] | ||
}]; | ||
``` | ||
Check failure on line 34 in dev-docs/bidders/greenbids.md GitHub Actions / run markdownlintFiles should end with a single newline character
|