Prebid.js icon indicating copy to clipboard operation
Prebid.js copied to clipboard

Anyclip Bid Adapter : initial release

Open basil79 opened this issue 3 months ago • 4 comments

Type of change

  • [ ] Bugfix

  • [ ] Feature

  • [x] New bidder adapter

  • [ ] Code style update (formatting, local variables)

  • [ ] Refactoring (no functional changes, no api changes)

  • [ ] Build related changes

  • [ ] CI related changes

  • [ ] Does this change affect user-facing APIs or examples documented on http://prebid.org?

  • [ ] Other

Description of change

Added new bid adapter AnyClip. It uses the external PubTag library for fast bids, first please add the following file to the <HEAD>

<!-- AnyClip PubTag -->
<script src="https://anyclip-player.s3.amazonaws.com/anyclip-widget/pubtag/pubtag.js"></script>
var adUnits = [{
    code: 'adunit1',
    mediaTypes: {
        banner: { // support banner only
            sizes: [
                [300, 250]
            ]
        }
    },
    bids: [{
        bidder: 'anyclip',
        params: {
            publisherId: '12345', // required, string
            supplyTagId: '-mptNo0BycUG4oCDgGrU', // required, string
            floor: 0.1 // optional, floor
        }
    }]
}]

Be sure to test the integration with your adserver using the Hello World sample page. -->

Other information

basil79 avatar Mar 13 '24 10:03 basil79