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

NoBid Bid Adapter: rules violations #10727

Closed
patmmccann opened this issue Nov 14, 2023 · 2 comments
Closed

NoBid Bid Adapter: rules violations #10727

patmmccann opened this issue Nov 14, 2023 · 2 comments

Comments

@patmmccann
Copy link
Collaborator

patmmccann commented Nov 14, 2023

Type of issue

bug

Description

must use our method for

window.localStorage.setItem(FIRST_PARTY_KEY, JSON.stringify(theId));
and
const ajaxGet = function (ajaxParams, callback) {
const ajax = new XMLHttpRequest();
ajax.withCredentials = false;
ajax.timeout = ajaxParams.timeout;
ajax.open('GET', ajaxParams.url, true);
ajax.onreadystatechange = function () {
if (this.readyState === XMLHttpRequest.DONE) {
callback(this.response);
}
};
ajax.send(ajaxParams.data);
};

also this is not allowed

const url = `https://api.intentiq.com/profiles_engine/ProfilesEngineServlet?at=39&mi=10&pt=17&dpn=1&iiqidtype=2&dpi=430542822&iiqpcid=${firstPartyId}&iiqpciddate=${pdate}&pid=${pid}`;

@patmmccann
Copy link
Collaborator Author

fixed in #10728

@patmmccann
Copy link
Collaborator Author

@redaguermas as fyi; you're welcome to resubmit with rules changes addressed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

1 participant