WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2026 Poal.co

137

Twitter doesn't allow reading tweets if not registered any more. It has become like Facebook. In order to read tweets you have to register now.

Twitter doesn't allow reading tweets if not registered any more. It has become like Facebook. In order to read tweets you have to register now.

(post is archived)

[–] 9 pts

Click on 'Sign Up.'

Click the 'X' to close.

Read away.

I discovered that last week.

[–] 4 pts

Using a browser in incognito mode usually works too.

[–] 2 pts

Well, guess I'm going to continue never using twitter.

[–] 3 pts

Hugs you and sniffs your hair

[–] 1 pt

Exactly. Twitter is hostile. No FakeBook, Twitter, Instagram, LinkedIn, ... basically (((big social))).

[–] 2 pts

Only for some tweets, most are still readable, even those with "sensitive content".

[–] 1 pt

You can read it by using nitter. Change the URL to ...nitter.net [whatever] and the whole site works without being logged in/having an account

Type in a URL for an account you know exists.

Twitter.com/espn

You'll get that accounts page and the search functionality.

[–] 0 pt

For a while I had a twitter account that was just to follow other accounts but I axed it because who wants to read constant leftist NWO shit.

and you need to give phone number to register

[–] 0 pt

Lasts a few seconds sometimes

[–] 0 pt

Yep so no more twatter for me.

[–] 0 pt

Use a private window or Nitter.

I use this TamperMonkey script to redirect to Nitter automatically.


// ==UserScript==
//          Twitter to Nitter
//     http://tampermonkey.net/
//       0.1
//   Redirect Twitter links to Nitter in order to avoid the splash screen while scrolling.
//        You
//         *://*.twitter.com/*
//         *://twitter.com/*
//         GM.xmlHttpRequest
//       reddit.com
//         GM_addStyle
//          data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==

(function() {
    'use strict';
    var reg = new RegExp('(.*)://((.*).)?twitter.com/(.*)');
    if (reg.test(document.URL))
    {
        var newURL = 'https://nitter.net'+window.location.pathname;
        window.location.href = newURL;
    }

})();
Load more (3 replies)