Implementations
For Every Use Case.
Check out below all the available
implementation options
Iframing
Your page is displayed inside an iframe.
Using this integration method, your traffics hits Adscore's CDN, which will analyze the traffic at the same time it shows your page inside an iframe, so your content will be be displayed to the visitor quicker.
Redirection
Adscore redirects the visitor to your landing page after analyzing the traffic.
The visitor hits Adscore's CDN, which will redirect the user to your landing page.
Active Filtering
Sends good traffic to your landing page and bad traffic to a honeypot.
The visit is analyzed and then redirected to your landing page or to a honeypot URL according to the traffic quality.
JavaScript Proxy
Conditional loading of JavaScript files in an asynchronous environment.
You've got an async JavaScript application logic and want to load a JS file or another, based on the traffic type. Our JavaScript Proxy implementation leverages the same Active Filtering functionality, to get you there.
JavaScript Tag
As simple as pasting a small JS snippet on your website.
Use the JavaScript Tag in the same manner you would with any analytics software out there.
<!-- Adscore JS Tag Implementation -->
<script
async
src="//c.adsco.re"
type="text/javascript"
onload="AdscoreInit('API_KEY');"></script>
JavaScript API
Call our classification code directly from your website
Using our JavaScript API gives you the most flexibility, classifying your traffic after it has reached your landing page - reducing the latency to the minimum, or find other uses for it like detecting DDOS attacks.
<!-- Adscore JS API Implementation -->
<script src="//c.adsco.re" type="text/javascript"></script>
<script type="text/javascript">
AdscoreInit("API_KEY", {
sub_id: "OPTIONAL_SUBID",
callback: function(result) {
/* LOGIC GOES HERE */
console.log(result);
}
});
</script>
Cloudflare® Worker
Adscore for an entire website, not just a page.
If you are using Cloudflare® on a Business (or higher) plan, you can use Adscore's Cloudflare® Worker to block all bot traffic from reaching your website.