Conversation
|
@gil - it looks great, would be awesome to have it included :-) |
| <hr/> | ||
| <p>Quoting: <a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p> | ||
| ${renderRssTweet(get(tweet.quote), cfg)} | ||
| #end if |
There was a problem hiding this comment.
Let me start by saying that this is the sole reason it's keeping me away from using Nitter's RSS feeds and I'm grateful you pointed in the right direction here. I hope this get's merged as soon as possible 🤞
My 2 cents here would be that this should use more semantically correct element:
| <hr/> | |
| <p>Quoting: <a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p> | |
| ${renderRssTweet(get(tweet.quote), cfg)} | |
| #end if | |
| <blockquote> | |
| <p> | |
| $renderRssTweet(get(tweet.quote), cfg)} | |
| </p> | |
| <footer> | |
| — <cite><a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></cite> | |
| </footer> | |
| </blockquote> |
There was a problem hiding this comment.
Thanks for the suggestion! It looks much better than what I did. Sorry I didn't merge it before, I was busy and then Twitter started breaking Nitter. Let's see if things will get more stable soon and I'll go back to this!
|
I need it, that's wonderful. |
|
I hope this get's merged |
|
Yeah, me too @koszzz ! But at this point, I'm not even sure if Nitter will ever be stable again so that we can use it for RSS 😢 |
|
this patch seems to work for my usecases and is now deployed on |
|
I appreciate this is a few months old now but this is something I'm very interested in as I use my local Nitter instance for rss. When I try and apply manually and compile I'm getting an error: If I try and apply automatically the diff fails, presumably the code has moved on since? I'm using the latest guest_accounts branch. |
|
@thomas-333 yeah, I imagined that would happen eventually. But given that Nitter future is uncertain (wasn't it discontinued a few weeks ago?) and RSS was never the focus, I'm not sure if it's worth investing on this anymore. You could probably check the current |
|
Thanks for the reply @gil. Nitter is working at least for now with real accounts which is fine for my personal use in generating rss feeds. I'm hoping it will continue it at least some form. After more testing your original code works fine. The problem was with @ninboy changes.
and the Also I should say thanks for this. This makes rss feeds so much better :) |
|
Thanks! Replaced by #1316 |
Fixes zedeus#132 Closes zedeus#820
* Bypass Cloudflare 403 error using cloudscraper (zedeus#1291) * Bypass Cloudflare 403 error using cloudscraper * add docs * Include pinned tweets in RSS Fixes zedeus#1262 * Remove unused skipPinned parameter * Add cookie-based authentication support Fixes zedeus#1303 * Add script for generating cookies * Add optional cookie session fields * Use dynamic rate limits from API responses * Add bearer token for cookie-based auth * Update tests * fix: correct argument parsing for --append flag in get_web_session.py (zedeus#1305) * fix: correct argument parsing for --append flag * fix: strip quotes from extracted user_id in twid cookie * Fix media support for cookie sessions Fixes zedeus#1304 * Fix broken UserMedia photo rail parsing Fixes zedeus#1307 * Add curl-based cookie session script * Include username in session logs if available Fixes zedeus#1310 * Support grok_share card Fixes zedeus#1306 * Add support for tweet views * Bump API versions, use more SessionAwareUrls * Cleanup * Fix broken pinned tweet parsing * Fix rss icon tag * Fix verified parsing for oauth endpoints * Update endpoints, fix parser, remove quotes stat * Remove Nim 1.6.x support Fixes zedeus#1311 * Redirect /i/status/id/history to /i/status/id Fixes zedeus#1231 * Fix broken tweet pagination ("Load more" button) Fixes zedeus#1277 * Expose username as HTML attribute Fixes zedeus#551 * Fix canonical link causing redirects to Twitter Fixes zedeus#526 * Fix double slashes in url replacements Fixes zedeus#520 * Fix intent/follow URL redirect Fixes zedeus#629 * Fix body font size to match x.com Fixes zedeus#711 * Add spaces filter, remove broken filters * Update search panel grid layout and animation * Style number input field * Embed quote tweet in RSS (zedeus#1316) Fixes zedeus#132 Closes zedeus#820 * Include "Video" and link for video tweets in RSS (zedeus#1315) Fixes zedeus#836 * Implement temp fix for cookie sessions Fixes zedeus#1319 * Fix 'key not found in object: expanded_url' error Fixes zedeus#1318 * Ignore null errors, they're internal API errors * Add experimental x-client-transaction-id support (zedeus#1324) * Add experimental x-client-transaction-id support * Remove broken test * Format css * Add video duration to overlay Fixes zedeus#498 * Improve verified checkmark icon, css improvements * Round video duration properly * Transition to ID-only RSS GUIDs on Dec 14, 2025 Fixes zedeus#447 * Use graphTweet for cookie sessions for now * Normalize headers * Add username validation Fixes zedeus#1317 * Add heuristics to detect when to show "Load more" Fixes zedeus#1328 * Allow , in username to support multiple users Fixes zedeus#1329 * Minor fix * Improve headers * Add preliminary support for nitter-proxy * Make maxConcurrentReqs configurable (zedeus#1341) * Fix the checkmark position (zedeus#1347) Co-authored-by: yav <[email protected]> * CR --------- Co-authored-by: 0xbarchitect <[email protected]> Co-authored-by: Zed <[email protected]> Co-authored-by: 0xCathiefish <[email protected]> Co-authored-by: jackyzy823 <[email protected]> Co-authored-by: yav <[email protected]> Co-authored-by: yav <[email protected]>
Hey folks! This is my quick attempt of displaying quoted tweets on RSS results. As I've said, I don't know this codebase nor have worked with Nim before, so I'm sorry for any problems it may cause. So far, it's working well on my test instance and I like the results much more. This is how it looks:
Before
After
Fixes #132