Twitter Bypass Bot check links

acidburn00

Newbie
Joined
May 30, 2018
Messages
3
Reaction score
0
Hello,
Someone knows how to avoid twitter bots from checking, links from my tweets? I have a website and i don't want twitter to know my website content.
I tried to ignore the bots with robots.txt,banning the ip-s(they have unlimited ips..this is not an option) and they have different user-agents.

Thank you!
 
Hello,
Someone knows how to avoid twitter bots from checking, links from my tweets? I have a website and i don't want twitter to know my website content.
I tried to ignore the bots with robots.txt,banning the ip-s(they have unlimited ips..this is not an option) and they have different user-agents.

Thank you!
I just read the forum and the solution is to gather all the ips from twitter bots and show to bots a different website (cloacking method).
1,Someone knows how many ips they have?
2.how much time it will take to get all ips if i start to manual tweet and waiting the bots?
 
just send the twitter bot a header to a nonexisrent domain:


<?php
if(strstr($_SERVER['HTTP_USER_AGENT'],'Twitterbot') || strstr($_SERVER['HTTP_USER_AGENT'],'Twitterbot')){
header('Location: http://domain.com');
exit();
}
?>
 
when posting a URL how many bots checking it?
just wondering because I get 300 clicks per URL and if it's twitter bots I am really upset about it.
 
Back
Top