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

Appier: add support for aliases #5392

Merged
merged 86 commits into from
Jun 23, 2020
Merged
Changes from all commits
Commits
Show all changes
86 commits
Select commit Hold shift + click to select a range
c928fe8
Add initial partial implementation for Appier bidder adapter.
PCMan-Appier Sep 18, 2018
efc0ff9
Use relative protocol for bidder API url.
PCMan-Appier Sep 18, 2018
32798c3
Handle server response for Appier adapter and add related unit tests.
PCMan-Appier Sep 20, 2018
206e521
Support farm-specific prebid server and allow overriding the server w…
PCMan-Appier Oct 2, 2018
fb6e9a4
Fix const correctness.
PCMan-Appier Oct 2, 2018
0d5aebc
Add doc for Appier bid adapter.
PCMan-Appier Oct 2, 2018
c3ce103
Append requestId to the beacon image URL of Appier adapter to reduce …
PCMan-Appier Oct 8, 2018
d1678ba
Send bidderRequest.refererInfo to Appier bidder server.
PCMan-Appier Oct 9, 2018
0e05b7b
Only generate a show beacon url if it's not provided by the backend.
PCMan-Appier Dec 5, 2018
4c2d891
Remove the show beacon since now we generate it in the backend server.
PCMan-Appier Dec 5, 2018
45243d3
Add version information for Appier adapter using semver (starts from …
PCMan-Appier Dec 11, 2018
afb3f65
Add a new adapter for Appier bidder.
PCMan-Appier Sep 18, 2018
cc5ec34
Merge branch 'appier-1.0.0' into appier-develop
PCMan-Appier Dec 12, 2018
28f538b
Add a new adapter for Appier bidder.
PCMan-Appier Sep 18, 2018
6b05c08
Merge branch 'master' into appier-develop
PCMan-Appier Dec 19, 2018
e29925e
Merge branch 'appier-develop' from Github into appier-develop
yhhuang-appier Feb 25, 2019
5cfdb95
Merge branch 'master' into appier-develop
yhhuang-appier Feb 25, 2019
7019531
add appier analyticsAdapter skeleton.
yhhuang-appier Feb 26, 2019
c042e85
update initial working version.
yhhuang-appier Mar 5, 2019
b557491
refactor and remove debug messages.
yhhuang-appier Mar 5, 2019
3ba10bf
fix config checking logic.
yhhuang-appier Mar 6, 2019
6e5caf2
Merged in yhhuang@impl-appier-analytics-adapter (pull request #11)
yhhuang-appier Mar 6, 2019
4ce9e7a
implement bidAdjustment and add timeout before send event.
yhhuang-appier Mar 6, 2019
7bc6334
Merged in yhhuang@impl-analytic-adjustment (pull request #12)
yhhuang-appier Mar 6, 2019
de0ed63
unify cache operation into cacheManager to avoid direct key/value ope…
yhhuang-appier Mar 6, 2019
768c9a7
Update server name.
yhhuang-appier Mar 7, 2019
6859345
correct currency impl and message payload. remove unused debug messages.
yhhuang-appier Mar 8, 2019
026d551
update var naming.
yhhuang-appier Mar 8, 2019
bc8fb46
rename creative vars. cleanup comments.
yhhuang-appier Mar 8, 2019
4c201d3
Merged in yhhuang@refactor-adapter-cache-manager (pull request #13)
yhhuang-appier Mar 8, 2019
201eaa2
Merged in yhhuang@correct-analytics-currency-and-messages (pull reque…
yhhuang-appier Mar 8, 2019
5dce47f
add test cases for AnalyticsAdapter.
yhhuang-appier Mar 11, 2019
ffe0d37
update test specs file.
yhhuang-appier Mar 11, 2019
cf9a922
remove spec from main branch.
yhhuang-appier Mar 11, 2019
53942fa
add unit tests for AnalyticsAdapter, #1 - Happy cases.
yhhuang-appier Mar 11, 2019
4d95e45
refactor tests.
yhhuang-appier Mar 12, 2019
afe8680
update unit tests for AnalyticsAdapter.
yhhuang-appier Mar 13, 2019
fe243b0
Merged in yhhuang@add-test-for-analytics-adapter (pull request #15)
yhhuang-appier Mar 13, 2019
eb09cac
add tests for bid-adjusted, bid-timeout events
yhhuang-appier Mar 13, 2019
8017392
fix bid adjustment test case.
yhhuang-appier Mar 13, 2019
ee68076
Merged in yhhuang@add-test-for-analytics-adapter (pull request #16)
yhhuang-appier Mar 13, 2019
a8363fb
add nobid case in analytics unit test.
yhhuang-appier Mar 13, 2019
54f6cc2
add test case for delayed bids and prebidWon messages.
yhhuang-appier Mar 13, 2019
2f3e2c9
Merged in yhhuang@add-test-for-delayed-bids (pull request #18)
yhhuang-appier Mar 14, 2019
e182814
Merged in yhhuang@add-test-for-analytics-adapter (pull request #17)
yhhuang-appier Mar 14, 2019
0e7f937
Merge branch 'appier-master' into appier-develop
yhhuang-appier Mar 14, 2019
29884e4
Use logInfo and logError utilility functions instead of console.log()…
PCMan-Appier Mar 15, 2019
53925d0
Merged in pcman@turnoff_debug_message (pull request #19)
PCMan-Appier Mar 15, 2019
6a3ba07
handle timeout status message correctly.
yhhuang-appier Mar 22, 2019
f4c77b7
correct isTimeout setting logic and test cases.
yhhuang-appier Mar 22, 2019
ebed9df
Merged in yhhuang@correct-timeout-handling (pull request #20)
yhhuang-appier Mar 25, 2019
06a1c2e
replace for...of by array.forEach for IE11
yhhuang-appier Mar 25, 2019
ddb3373
Merged in yhhuang@avoid-using-for-of-to-support-ie11 (pull request #21)
yhhuang-appier Mar 26, 2019
6437afe
apply auto formatter.
yhhuang-appier Mar 26, 2019
cbc0453
Merge branch 'appier-develop' of bitbucket.org:plaxieappier/pmp-prebi…
yhhuang-appier Mar 26, 2019
1312827
Merge branch 'master' into appier-develop
yhhuang-appier Mar 26, 2019
59ac5fc
refactor: extract timeout logic to a helper function
yhhuang-appier Mar 26, 2019
96646e4
Merged in yhhuang@refactor-is-timeout-helper-function (pull request #22)
yhhuang-appier Mar 26, 2019
cb62acc
tag analytic version with 0.1.0-beta for iCook release
yhhuang-appier Mar 26, 2019
588ed31
Re-implement the appier analytics adapter with a simpler design and c…
PCMan-Appier Mar 29, 2019
dc65a13
Merged in pcman@simplify_analytics_adapter (pull request #23)
PCMan-Appier Mar 29, 2019
bbcf88b
Remove unused variables.
PCMan-Appier Apr 1, 2019
786ba46
Rename methods to improve consistency.
PCMan-Appier Apr 1, 2019
3bce50b
Code cleanup: rename methods and avoid duplicated code.
PCMan-Appier Apr 1, 2019
31751eb
Merged in pcman@code_cleanup (pull request #24)
PCMan-Appier Apr 1, 2019
41ce084
Fix wrong bid response data caused by non-deterministic event orderin…
PCMan-Appier Apr 1, 2019
cc2b04e
Merged in pcman@fix_event_sequence (pull request #25)
PCMan-Appier Apr 1, 2019
fb71748
Send bid message immediately on auction end without delay.
PCMan-Appier Apr 1, 2019
12d884c
Merged in pcman@remove_unnecessary_delay_send (pull request #26)
PCMan-Appier Apr 1, 2019
53ec15a
add withCredentials in ajax call to get client cookie.
yhhuang-appier Apr 11, 2019
95bd176
Merged in yhhuang@add-with-credentials-in-ajax (pull request #27)
yhhuang-appier Apr 12, 2019
8796dcf
Fix broken unit test for appier analytic adapter.
PCMan-Appier Apr 12, 2019
eed3071
Merged in pcman@fix_unit_test (pull request #28)
PCMan-Appier Apr 12, 2019
4beca7e
add prediction id support.
yhhuang-appier Apr 12, 2019
62822d9
update predictionId/configId format in tests.
yhhuang-appier Apr 12, 2019
da2f6e3
Merged in yhhuang@add-prediction-id-support (pull request #29)
yhhuang-appier Apr 12, 2019
b268a7f
Init refined appier analytics testing
kd-appier May 29, 2019
6dbe1ee
Merged in kdchang@increase_analytics_adapter_coverage (pull request #30)
kd-appier May 29, 2019
6416c8c
Merge branch 'master' of bitbucket.org:plaxieappier/pmp-prebid.js
gocreating-appier May 31, 2019
de95650
hotfix: appier analytics support browserstack bug
kd-appier Jun 3, 2019
86c913a
Merge branch 'appier-develop' of bitbucket.org:plaxieappier/pmp-prebi…
gocreating-appier Jul 30, 2019
2c4f7a3
Merge branch 'master' into appier-develop
justinkuo-appier Jun 16, 2020
0575fd5
feat: add aliases
justinkuo-appier Jun 16, 2020
7b79a61
Merged in justin.kuo@add_aliases (pull request #32)
justinkuo-appier Jun 16, 2020
48d3807
Merge branch 'master' into appier-develop
justinkuo-appier Jun 17, 2020
b9fac2b
Merge branch 'master' into appier-develop
justinkuo-appier Jun 18, 2020
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 modules/appierBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const BIDDER_API_ENDPOINT = '/v1/prebid/bid';

export const spec = {
code: 'appier',
aliases: ['appierBR', 'appierExt', 'appierGM'],
supportedMediaTypes: SUPPORTED_AD_TYPES,

/**
Expand Down