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

Nexverse Bid Adapter : remove slash from the endpoint #12617

Merged
merged 23 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
47b0d3f
Add nexverseBidAdapter implementation and tests
anand-nexverse Oct 7, 2024
dbf622a
Updated Nexverse adapter to support OpenRTB 2.5, handle 204 responses…
anand-nexverse Oct 7, 2024
ebea041
Merge branch 'master' into nexverse-bid-adapter
anand-nexverse Oct 8, 2024
52d6dbc
Resolved conflicts and merged master into nexverse-bid-adapter
anand-nexverse Oct 8, 2024
37ac7a2
Merge branch 'prebid:master' into nexverse-bid-adapter
anand-nexverse Oct 8, 2024
ee50b08
Code optimization:
yogeshverse Nov 18, 2024
77f6089
Code optimization:
yogeshverse Nov 18, 2024
b257537
* Removed bidfloor from Adunit
yogeshverse Nov 19, 2024
1be801d
* Added test cases for bid param checks
yogeshverse Nov 20, 2024
ddd80d8
* Added testcases for utils functions
yogeshverse Nov 20, 2024
0c1e571
* removed duplicate function and used from available library
yogeshverse Nov 20, 2024
727f94e
* removed unwated logging
yogeshverse Nov 20, 2024
dbf7fcb
* added logger in try catch
yogeshverse Nov 20, 2024
d6069e7
fixed linter error
yogeshverse Nov 20, 2024
8440469
* fixed linter issue
yogeshverse Nov 20, 2024
60ffab6
Merge branch 'prebid:master' into nexverse-bid-adapter
yogeshverse Nov 20, 2024
da9ecf7
fixed the getOsVersion missing function issue
yogeshverse Nov 20, 2024
d7120a4
fixed the getOsVersion missing function issue
yogeshverse Nov 20, 2024
0dea47a
removed hardcoded cpm value
yogeshverse Nov 22, 2024
8a946b5
Added comment for is debug param
yogeshverse Nov 25, 2024
bb766d9
removed extra slash from URL
yogeshverse Jan 6, 2025
7eb4f0c
Merge branch 'prebid:master' into nexverse-bid-adapter-new
yogeshverse Jan 6, 2025
80d0820
Merge branch 'nexverse-bid-adapter-new' of https://github.com/anand-n…
yogeshverse Jan 6, 2025
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
2 changes: 1 addition & 1 deletion modules/nexverseBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { getUserSyncs } from '../libraries/teqblazeUtils/bidderUtils.js';
import { getOsVersion } from '../libraries/advangUtils/index.js';

const BIDDER_CODE = 'nexverse';
const BIDDER_ENDPOINT = 'https://rtb.nexverse.ai/';
const BIDDER_ENDPOINT = 'https://rtb.nexverse.ai';
const SUPPORTED_MEDIA_TYPES = [BANNER, VIDEO, NATIVE];
const DEFAULT_CURRENCY = 'USD';
const BID_TTL = 300;
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/nexverseBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { spec } from 'modules/nexverseBidAdapter.js';
import { getDeviceModel, buildEndpointUrl, parseNativeResponse } from '../../../libraries/nexverseUtils/index.js';
import { getOsVersion } from '../../../libraries/advangUtils/index.js';

const BIDDER_ENDPOINT = 'https://rtb.nexverse.ai/';
const BIDDER_ENDPOINT = 'https://rtb.nexverse.ai';

describe('nexverseBidAdapterTests', () => {
describe('isBidRequestValid', function () {
Expand Down
Loading