-
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
Feature request: detect ad blocking environment #10126
Comments
What is an example of the blocked url? Which browser blocked it? |
we feel it more in Edge and Firefox
urls for example:
https://trc.taboola.com/articlesmansion-hb/log/3/visible?route=AM%3AAM%3AV<i=new-test-inc-vis-2_ctrl
https://trc.taboola.com/articlesmansion-hb/log/3/bulk?route=AM%3AAM%3AV<i=new-test-inc-vis-2_ctrl&bulkSize=1
…On Wed, Jun 21, 2023 at 2:42 PM Patrick McCann ***@***.***> wrote:
What is an example of the blocked url? Which browser blocked it?
—
Reply to this email directly, view it on GitHub
<#10126 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A2BIRRBTILQYWBW6GGVMYNTXMLM3RANCNFSM6AAAAAAZOOXA2I>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Is there any update or figures regarding this issue? |
No one else has reproduced or reports this issue so far. It seems unique to Taboola. |
@patmmccann I see, actually strict mode browsers distribution isn't that high. Currently we are checking if it is due to ad blockers maybe. We noticed some block prebid and some though prebid rendering iframe blocked still sent a request to our bidder service. If you have more information regarding this or any tips, will appreciate that |
@ahmadlob I am not sure how to proceed on this - could you provide steps to reproduce? (for example, which browser should I use, how should I set it up, and what is the behavior I should see on the pages you gave?) |
To enable Strict Mode in Firefox for desktop, you can: Mozilla Support, MakeUseOf, +1 more |
@ahmadlob are you able to detect this mode on your requests somehow? How were you able to identify this gap? One idea is if we can somehow detect it, we could put it in the request object or cancel all auctions as prebid ssps will not be able to pay. |
@patmmccann to find a contact at mozilla |
@patmmccann we noticed the gap as discrepancy between our "nurl" win count vs publishers ad server impressions. Lets distinguish between the two issues:
If you could detect it will be great |
@ahmadlob to be clear, you want to detect an ad blocker, not strict mode, and append the flag to the request object? |
@patmmccann exactly 100% |
committee wants to allow for an api for an adblocker extension to notify prebid ads will be blocked; also to add indications of tracking pixels being unlikely to have query string parameters with bid request ids or something of that nature |
Broadening the scope a little bit, I think it would be helpful for publishers and ad-tech partners to have signals that describe the ability to serve ads to the current environment. Prebid feels like the right entity to help fill this gap. A potential solution could have at three parts:
Items 1 and 2 above would be in prebid core code, would need to be updated on some cadence as browsers evolve, and would be immediately useful. Item 3 is an API exposed by Prebid.js core and is more future looking and aimed at facilitating orderly communication between users (or the software operating on their behalf) and publishers, with the assumption that transparent communication will be more helpful than attempts at detection. [update] [update] // An object that describes the current ad restrictions and who is enforcing them.
// It's possible that multiple restrictions could be in place. In the case of a "partial"
// restriction, the blocked and/or allowed lists would denote which entities can/cannot
// show ads.
interface AdRestrictions {
type: "device" | "browser" | "extension" | "other",
scope: "full" | "partial",
blocked: [string],
allowed: [string],
};
function registerAdRestrictions(restrictions: AdRestrictions) {
// ...
}; |
Maybe @mkendall07 has some deeper insights on this? |
I like the idea proposed by @JoelPM, however expecting blockers to register themselves might be a expecting too much - in my experience that's not been possible as there is no desire to register this type of behavior (for numerous reasons but mostly because of the desired not to be circumvented). Detection could be possible way to go to basically short circuit stop the auction in those "half conditions" where the PBJS library/bidding request is not blocked but the render is. So if that condition can be detected you can simply stop before sending the HB requests. |
Type of issue
We are suffering from significant discrepancies with different publishers, conducted analysis and noticed it looks to be a result of a certain browsers tracking prevention/protection. When browser is in strict mode, taboola tracker is blocked.
This results in discrepancy between the publisher numbers ( counting ad server impressions where taboola win ) and our impressions and visible numbers (not rendered or fired so on our side not counted)
Are you familiar with this issue? (it should affect many bidders and not just taboola)
Suggested solutions are appreciable
The text was updated successfully, but these errors were encountered: