-
-
Notifications
You must be signed in to change notification settings - Fork 535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Is there a way to use a twitter acc in combination with nitter (or an alternative twitter front end using your twitter login) #1195
Comments
Yes, there is a way. Actually, that's the only way left to use Nitter. I recently learned that that's exact how https://github.com/PrivacyDevel/nitter is able to continue to functioning these days. It's also how they have been able to display age-restricted content. |
@pin-grid-array i see. Can i know how this is done? |
@back-lacking I actually don't know how. I'm just a former ordinary Nitter user and it's beyond my expertise. Ask in that fork. A while ago I collected various instructions from people who tried setting up their own instance using a Twitter account, but I don't know if any of that still applies. (I just noticed that there are a bunch of typos in my previous reply to you. Sorry about that!) |
@back-lacking hey dude did you find any way to use nitter with a twitter ac ? |
you can use other ways aside from nitter. If you are planning to use ur twitter account. I can share you hwhat i use |
@doffn if you do have a 3rd party viewer, send it in. Perferebly one that can be deployed on docker. |
@back-lacking sorry for the late response. I used two methods to scrape tweets:
After getting the data do what ever you like with it. becare full on the rate limit. You can avoid this by using multiple account. |
I'm interested. Can you tell me how? Thank you. |
@rinaldi6109 im using a fork made by privacydevel. Its been posted earlier by pingridarray. I can later post a docker compose that i got working. |
@back-lacking If you could post the docker compose you got working that would be awesome. I'm very interested. |
@codeiimon edited this compose to have it work in most environments. version: "3"
services:
nitter:
image: ghcr.io/privacydevel/nitter:master
container_name: nitter
ports:
- "8080:8080" # Replace with "8080:8080" if you don't use a reverse proxy
volumes:
- ./nitter.conf:/src/nitter.conf:Z,ro
- ./guest_accounts.json:/src/guest_accounts.json:ro
depends_on:
- nitter-redis
restart: unless-stopped
networks:
- nitter
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:8080/Jack/status/20 || exit 1
interval: 30s
timeout: 5s
retries: 2
user: 998:998
read_only: true
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
nitter-redis:
image: redis:6-alpine
container_name: nitter-redis
hostname: nitter-redis
ports:
- 6379
command: redis-server --save 60 1 --loglevel warning
networks:
- nitter
volumes:
- nitter-redis:/data
restart: unless-stopped
healthcheck:
test: redis-cli ping
interval: 30s
timeout: 5s
retries: 2
user: 999:1000
read_only: true
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
volumes:
nitter-redis: null
networks:
nitter: |
@back-lacking I have been using https://nitter.privacydev.net/MarkDavis/ to keep up with a particular "twitter" user and am lately getting annoyed with almost constant "Instance has been rate limited." responses there. I have a "twitter" account, but I very much prefer the Nitter presentation. I am running Linux Mint 22 here. I would be willing to install Nitter on my system here strictly for my own use, but I would need pointers to a complete "recipe" to accomplish this. I have checked both the synaptic package manager and the software manager on my system and do not see Nitter as an installable option. Both show many hits on "docker" but I have no idea which I would actually need to install to make use of your "compose" above or how to install my "twitter' credentials in it. Any assistance you can give me would be appreciated. Dave |
@dhdurgee If you're just getting started, I believe the only method is to use a fork that just uses a single account. You no longer can create oauth tokens as of a couple months ago. https://github.com/cmj/nitter/wiki/Install As far as using docker images, that's not something I've looked at; I just run it directly. This fork seems to be working well for my personal use for a few months now. All multi-account management has been stripped as it was just a PoC. Maybe that can be added back later. |
[@cmj](https://github.com/cmj) Thank you for your pointer.. Looking at your dependencies I had only
libpcre installed, specifically libpcre2. Checking my repositories I
installed libsass1 and redis as well. Are there minimum versions required?
Looking at you installation guide I see nimble is required, which is not
in my repositories. Where do I get it and its dependencies?
Thank you again for your assistance.
Dave
… cmj wrote: @dhdurgee <https://github.com/dhdurgee> If you're just
getting started, I believe the only method is to use a fork that just
uses a single account. You no longer can create oauth tokens as of a
couple months ago.
https://github.com/cmj/nitter/wiki/Install
As far as using docker images, that's not something I've looked at; I
just run it directly. This fork seems to be working well for my
personal use for a few months now. All multi-account management has
been stripped as it was just a PoC. Maybe that can be added back later.
—
Reply to this email directly, view it on GitHub
<#1195 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDDU7ZHEFY5M2BN57GDL2TZ7J2ADAVCNFSM6AAAAABGF7ENDSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINRQGY4DQNBQGE>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@dhdurgee |
@cmj As noted above I believe I have found the dependencies you listed in my repositories, bu t I do not see nimble there and from the installation guide that is also required. Where do I get nimble and what are its dependencies? |
@dhdurgee |
@cmj I just installed nim and started following your installation guide. First line yields "permission denied", but worked when invoked with sudo. Second line fails with "Authentication failure" Once again I find this works when invoked with sudo, but at this point I am wondering what else I will encounter as the /opt/ directory has user and group as root. I anticipate the next step will fail as nitter does not have permission. How do I accomplish this? I am running Linux Mint 22 Cinnamon here. Perhaps I need to chgrp the /opt/ directory from root to adm or staff and add nitter to that group first? |
This is an issues entry, and it should be treated as such. There are many install howtos out there. https://github.com/sekai-soft/guide-nitter-self-hosting This may be out-of-date but should help? That said, you will need to use cookies from now on. |
what the question says
wondering if there is a way to use nitter with a twitter account? i have an account i dont care about and would like to use that to view the occasional tweet using the front end. ik that using an twitter acc to look at tweets using nitter defeats the point of nitter existing
if there isnt, is there an alternative service or nitter fork that allows this?
The text was updated successfully, but these errors were encountered: