|
|
|
|
|
by lwneal
1283 days ago
|
|
Currently, whenever anyone posts a tweet including a URL, Twitterbot accesses that URL and if censored content is found (keywords associated with Mastodon) then the tweet is blocked. It appears that this behavior is pretty simple and can be defeated by, for example, the following nginx configuration: server {
if ($http_user_agent ~* "Twitterbot") {
return 200 ElonIsGreat420TSLAToTheMoon;
}
return 301 https://mastodon.social$request_uri;
}
|
|