Skip to content
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

New adapter: Appstock #3054

Merged
merged 4 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exchange/adapter_builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ func newAdapterBuilders() map[openrtb_ext.BidderName]adapters.Builder {
openrtb_ext.BidderApacdex: apacdex.Builder,
openrtb_ext.BidderApplogy: applogy.Builder,
openrtb_ext.BidderAppnexus: appnexus.Builder,
openrtb_ext.BidderAppstock: limelightDigital.Builder,
openrtb_ext.BidderAppush: appush.Builder,
openrtb_ext.BidderAudienceNetwork: audienceNetwork.Builder,
openrtb_ext.BidderAutomatad: automatad.Builder,
Expand Down
2 changes: 2 additions & 0 deletions openrtb_ext/bidders.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ var coreBidderNames []BidderName = []BidderName{
BidderApacdex,
BidderApplogy,
BidderAppnexus,
BidderAppstock,
BidderAppush,
BidderAudienceNetwork,
BidderAutomatad,
Expand Down Expand Up @@ -343,6 +344,7 @@ const (
BidderApacdex BidderName = "apacdex"
BidderApplogy BidderName = "applogy"
BidderAppnexus BidderName = "appnexus"
BidderAppstock BidderName = "appstock"
BidderAppush BidderName = "appush"
BidderAudienceNetwork BidderName = "audienceNetwork"
BidderAutomatad BidderName = "automatad"
Expand Down
16 changes: 16 additions & 0 deletions static/bidder-info/appstock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
endpoint: "http://ads-pbs.pre.vr-tb.com/openrtb/{{.PublisherID}}"
maintainer:
email: "engineering@project-limelight.com"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

verification sent to this email address. Please reply with confirmed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

received

capabilities:
app:
mediaTypes:
- banner
- video
- audio
- native
site:
mediaTypes:
- banner
- video
- audio
- native
17 changes: 17 additions & 0 deletions static/bidder-params/appstock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Appstock Adapter Params",
"description": "A schema which validates params accepted by the Appstock adapter",
"type": "object",

"properties": {
"publisherId": {
"type": ["integer", "string"],
"description": "Publisher ID",
"minimum": 1,
"pattern": "^[1-9][0-9]*$"
}
},

"required": ["publisherId"]
}