-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Floxis Bid Adapter: add Prebid Server support (Go + Java) #6596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
floxis-admin
wants to merge
9
commits into
prebid:master
Choose a base branch
from
floxis-admin:agent/floxis-pbs-docs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7b2fab6
Floxis Bid Adapter : initial release
floxis-admin 0b534c8
Improved documentation
floxis-admin 0863a96
Merge branch 'master' into master
floxis-admin cb511d7
Simplified documentation
floxis-admin 9ccbf40
docs(floxis): declare Prebid Server support (pbs: true)
floxis-admin afecfa1
Floxis: set gvl_id to 1609 (IAB TCF registration approved)
floxis-admin 485e219
Update dev-docs/bidders/floxis.md
floxis-admin 91e5a5f
Merge remote-tracking branch 'upstream/master' into agent/floxis-pbs-…
floxis-admin 7c78aa6
docs(floxis): address review — h2 headings, accurate gpp_sids/params,…
floxis-admin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,177 @@ | ||
| --- | ||
| layout: bidder | ||
| title: Floxis | ||
| description: Prebid Floxis Bidder Adapter | ||
| biddercode: floxis | ||
| pbjs: true | ||
| pbs: true | ||
| pbs_app_supported: true | ||
| media_types: banner, video, native, audio | ||
| safeframes_ok: true | ||
| sidebarType: 1 | ||
| tcfeu_supported: true | ||
| dsa_supported: false | ||
| gvl_id: 1609 | ||
| usp_supported: true | ||
| coppa_supported: true | ||
| gpp_supported: true | ||
|
floxis-admin marked this conversation as resolved.
Outdated
|
||
| schain_supported: true | ||
| dchain_supported: false | ||
| deals_supported: false | ||
| floors_supported: yes | ||
| fpd_supported: false | ||
| prebid_member: false | ||
| multiformat_supported: will-bid-on-any | ||
| ortb_blocking_supported: true | ||
| privacy_sandbox: no | ||
| --- | ||
|
|
||
| ### Note | ||
|
floxis-admin marked this conversation as resolved.
Outdated
|
||
|
|
||
| The Floxis bidder adapter enables integration with the Floxis programmatic advertising platform. It supports banner, video, and native formats with OpenRTB 2.x compliance via Prebid.js, and banner, video, native, and audio via Prebid Server. Please contact Floxis at <prebid@floxis.tech> to set up your account and obtain the required parameters. | ||
|
|
||
| ### Prebid.js Bid Params | ||
|
|
||
| {: .table .table-bordered .table-striped } | ||
|
|
||
| | Name | Scope | Description | Example | Type | | ||
| |------|-------|-------------|---------|------| | ||
| | `seat` | required | Seat identifier provided by Floxis | `"testSeat"` | `string` | | ||
| | `region` | required | Region identifier for routing | `"us-e"` | `string` | | ||
| | `partner` | required | Partner identifier provided by Floxis | `"floxis"` | `string` | | ||
|
|
||
| ### Prebid Server | ||
|
|
||
| The Floxis Prebid Server adapter is available in both Go (`prebid-server`) and Java (`prebid-server-java`). The server-side endpoint is `https://rtb-{region}.floxis.tech/pbs` where `{region}` is one of `us-e`, `eu`, or `apac`. User-sync is handled via the standard Prebid Server cookie-sync mechanism. For setup assistance contact <prebid@floxis.tech>. | ||
|
|
||
| ### Prebid Server Bid Params | ||
|
|
||
| {: .table .table-bordered .table-striped } | ||
|
|
||
| | Name | Scope | Description | Example | Type | | ||
| |------------|----------|-----------------------------------------------------------|---------------|----------| | ||
| | `seat` | required | Seat identifier provided by Floxis | `"testSeat"` | `string` | | ||
| | `region` | optional | Routing region: `us-e`, `eu`, or `apac` (default: `us-e`) | `"us-e"` | `string` | | ||
|
|
||
| ### Floors Support | ||
|
|
||
| The Floxis adapter supports the Prebid.js [Floors Module](https://docs.prebid.org/dev-docs/modules/floors.html). Floor values are automatically included in the OpenRTB request as `imp.bidfloor` and `imp.bidfloorcur`. | ||
|
|
||
| ### Privacy Support | ||
|
|
||
| Privacy fields (GDPR, USP, GPP, COPPA) are handled by Prebid.js core and automatically included in the OpenRTB request. | ||
|
|
||
| ### AdUnit Configuration for Banner | ||
|
|
||
| ```javascript | ||
| var adUnits = [{ | ||
| code: 'banner-ad-div', | ||
| mediaTypes: { | ||
| banner: { | ||
| sizes: [[300, 250], [728, 90]] | ||
| } | ||
| }, | ||
| bids: [{ | ||
| bidder: 'floxis', | ||
| params: { | ||
| seat: 'testSeat', | ||
| region: 'us-e', | ||
| partner: 'floxis' | ||
| } | ||
| }] | ||
| }]; | ||
| ``` | ||
|
|
||
| ### AdUnit Configuration for Video | ||
|
|
||
| ```javascript | ||
| var adUnits = [{ | ||
| code: 'video-ad-div', | ||
| mediaTypes: { | ||
| video: { | ||
| context: 'instream', | ||
| playerSize: [[640, 480]], | ||
| mimes: ['video/mp4'], | ||
| protocols: [2, 3, 5, 6], | ||
| minduration: 5, | ||
| maxduration: 30 | ||
| } | ||
| }, | ||
| bids: [{ | ||
| bidder: 'floxis', | ||
| params: { | ||
| seat: 'testSeat', | ||
| region: 'us-e', | ||
| partner: 'floxis' | ||
| } | ||
| }] | ||
| }]; | ||
| ``` | ||
|
|
||
| ### AdUnit Configuration for Native | ||
|
|
||
| ```javascript | ||
| var adUnits = [{ | ||
| code: 'native-ad-div', | ||
| mediaTypes: { | ||
| native: { | ||
| title: { | ||
| required: true, | ||
| len: 80 | ||
| }, | ||
| body: { | ||
| required: true | ||
| }, | ||
| image: { | ||
| required: true, | ||
| sizes: [150, 50] | ||
| }, | ||
| sponsoredBy: { | ||
| required: true | ||
| } | ||
| } | ||
| }, | ||
| bids: [{ | ||
| bidder: 'floxis', | ||
| params: { | ||
| seat: 'testSeat', | ||
| region: 'us-e', | ||
| partner: 'floxis' | ||
| } | ||
| }] | ||
| }]; | ||
| ``` | ||
|
|
||
| ### Example | ||
|
|
||
| ```javascript | ||
| var pbjs = pbjs || {}; | ||
| pbjs.que = pbjs.que || []; | ||
|
|
||
| pbjs.que.push(function() { | ||
| pbjs.addAdUnits([{ | ||
| code: 'div-gpt-ad-1234567890123-0', | ||
| mediaTypes: { | ||
| banner: { | ||
| sizes: [[300, 250], [320, 50]] | ||
| } | ||
| }, | ||
| bids: [{ | ||
| bidder: 'floxis', | ||
| params: { | ||
| seat: 'testSeat', | ||
| region: 'us-e', | ||
| partner: 'floxis' | ||
| } | ||
| }] | ||
| }]); | ||
|
|
||
| pbjs.requestBids({ | ||
| timeout: 3000, | ||
| bidsBackHandler: function(bidResponses) { | ||
| // Handle bid responses | ||
| pbjs.setTargetingForGPTAsync(); | ||
| } | ||
| }); | ||
| }); | ||
| ``` | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.