-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
AndBeyond.Media adapter: update bidder code #9005
Conversation
modules/andBeyondMediaBidAdapter.js
Outdated
@@ -4,7 +4,7 @@ import { registerBidder } from '../src/adapters/bidderFactory.js'; | |||
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js'; | |||
import { config } from '../src/config.js'; | |||
|
|||
const BIDDER_CODE = 'beyondmedia'; | |||
const BIDDER_CODE = 'andbeyond.media'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very long, why not andbeyond
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's also breaking i believe, add your old code as an alias
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very long, why not andbeyond
The thing is that this is a full name of the Company and we cannot shorten this to andbeyond. I haven't seen any limitations before. Do you have any?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GAM key values have a limit of 20 chars. And GET requests have a length limit. This can cause issues for publishers which use enableSendAll
key values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@patmmccann @muuki88
We have changed the code to "andbeyond". This is fine ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@patmmccann @muuki88 we noticed that biddercode andbeyond
is an Adkernel adapter alias, is that normal?https://github.com/AndBeyondMediaHB/Prebid.js/blob/master/modules/adkernelBidAdapter.js#L82
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these rules valid? If so, can we use the biddercode andbeyondmedia
. If not, why not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well in this case you would not be unique with adkernel's alias for the first 6 characters. Did you discover why they are using your name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@patmmccann They are using this name because this is a name of their company, they cannot change it to another one. Could you please clarify if it can cause some problems when this is not unique with adkernel's alias?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AdKernel's company name is also andbeyond?
@@ -3,7 +3,7 @@ import { spec } from '../../../modules/andBeyondMediaBidAdapter.js'; | |||
import { BANNER, VIDEO, NATIVE } from '../../../src/mediaTypes.js'; | |||
import { getUniqueIdentifierStr } from '../../../src/utils.js'; | |||
|
|||
const bidder = 'beyondmedia' | |||
const bidder = 'andbeyondmedia' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please see the circleci failures
@patmmccann @muuki88 we left the bidder code as is. We just changed the title and renamed the js-files to fix the upload issue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok - changing the biddercode to "beyondmedia" for Prebid.js will solve the website download problem, but now you've introduced another problem -- you're not matching the biddercode for your server-side adapter.
I'm afraid I have to insist that your client-side and server-side bidder code match. Publishers need to be able to use the Server-to-Server testing module, which they wouldn't be able to do for your service if you've got different codes for these adapters. Let's get this right.
Will let you choose whether to use "beyondmedia" or "andbeyondmedia" - just settle on one please. And if desired, you can define an alias on either or both client- and server-sides to use both names!
@bretg @muuki88 @patmmccann Thanks, we decided to keep the name |
Question: should the adkernel adapter still be aliasing |
@bretg we are not affiliated with adkernel adapter, also we don't know if it should use |
* add andBeyondMedia adapter * update bidderCode * update biddercode * change andbeyond.media => andbeyond * changes * updates * rename files * updates Co-authored-by: Vlad Isaiko <vladis@smartyads.com>
* add andBeyondMedia adapter * update bidderCode * update biddercode * change andbeyond.media => andbeyond * changes * updates * rename files * updates Co-authored-by: Vlad Isaiko <vladis@smartyads.com>
doc - prebid/prebid.github.io#4018