计算广告的高质量访问者

Counting High Quality visitor for ads

我开始制作一个提供广告短链接的网站,然后向发布商付款,但对于广告商来说,他们只希望真实的人看到他们的有说服力的广告,所以我的问题是如何知道观众是真实的人并且高质量足以让计数器计数它们所以我可以奖励发布者,

对不起,如果你不明白我的英语不好

非常感谢

有一些小的 REST API 正在做很棒的 IP 验证 返回一个分数 你发送的 IP,例如:

    $ip = $_SERVER['REMOTE_ADDR'] ; // your user IP
    
    $checkIp = file_get_contents('http://check.getipintel.net/check.php?ip='.$ip.'&contact=mail@example.com') ;
// don't forget to put a real e-mail
    
    if ($checkIp <=0.95) {
// this user is not a bot ! 
// do something here
    }

然后您可以将结果保存在会话或 cookie 中,这样您就不必在每个页面上调用 API。我曾经使用 http://getipintel.net/ 但基于相同的想法,您可以使用 google invisible captcha.