Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
/ tbm Public archive

Fetch all your bookmarked tweets and make them accessible through a webinterface.

License

Notifications You must be signed in to change notification settings

Webklex/tbm

Repository files navigation

TBM - Twitter Bookmark Manager

Fetch all your bookmarked tweets and make them accessible through a webinterface.

Releases Downloads License Hits

Search Tweets (Search for bookmarked tweets)

Table of Contents

Features

  • Fetch all bookmarked tweets
  • Search for all bookmarked tweets containing a given phrase (this includes: username, real name, hashtag, tweet content and real urls)

Installation

You can either download a matching prebuild binary and config from the releases or clone this repository and build it yourself.

Usage

In order to fetch your bookmarks, you'll have to supply an active cookie. You can find it by following these steps:

  1. Login to twitter.com and press f12, switch to the Network tab
  2. Go to https://twitter.com/i/bookmarks and look for a request named Bookmarks?variables=%7B%22count%22%3A20.. inside your open network tab
  3. Click on the request and switch to the Headers tab if it isn't selected and scroll down to Request Headers
  4. Copy the line starting with cookie: . Make sure to enclose the entire cookie string in quotes ("). Escape possible quotes on key:values pairs inside the cookie as \".
  -config string
        Application config file (default "./config.json")
  -offline
        Don't fetch new bookmarks; link to local files only
  -cookie string
        Twitter cookie string
  -data-dir string
        Folder containing all fetched data (default "./data")
  -delay duration
        Delay your request by a given time (default 30s)
  -host string
        Host address the api should bind to (default "localhost")
  -port uint
        Port the api should bind to (default 4788)
  -timeout duration
        Request timeout (default 10s)
  -timezone string
        Application time zone (default "UTC")
  -danger-remove-bookmarks
        Remove the bookmark on Twitter if the tweet has been downloaded
  -log int
        Set the log mode (0 = all, 1 = success, 2 = warning, 3 = statistic, 4 = error)
  -no-color
        Disable color output
  -version
        Show version and exit
  -help
        Show help and exit

Configuration

Besides the command arguments, you can also provide a config file:

{
  "timezone": "UTC",
  "data_dir": "./data",
  "mode": "online",
  "danger": {
    "remove_bookmarks": false
  },
  "server": {
    "host": "localhost",
    "port": 4788
  },
  "scraper": {
    "delay": "30s",
    "cookie": "guest_id=..."
  }
}

Modes

There are currently two different modes available. online and offline. If you enable offline mode, the program won't fetch any new bookmarks and only reference previously downloaded resources such as tweets and media files.

If you want to restart your sync, stop the application and delete the file called .cursor.tmp located in your working directory.

Websocket

The websocket can be accessed under ws://{host}:{port}/ws.

Build

Build a new regular binary:

go build -ldflags "-w -s -X main.buildNumber=1 -X main.buildVersion=custom" -o tbm

Development

Requirements:

  • Node v12.13
  • Golang ^1.17.2
npm run watch
npm run build
go run main.go

Custom Styles

By default all assets (.js, .css, .tmpl, etc) get included while building a new version.

Structure:

  • static
    • assets
      • css
        • tailwind.css
    • template
    • css
      • tailwind.css (compiled tailwind css)
      • style.css (custom styling)
    • js
      • app.js

Features & pull requests

Everyone can contribute to this project. Every pull request will be considered, but it can also happen to be declined. To prevent unnecessary work, please consider to create a feature issue first, if you're planning to do bigger changes. Of course, you can also create a new feature issue if you're just wishing a feature ;)

Off-topic, rude or abusive issues will be deleted without any notice.

Support

If you encounter any problems or if you find a bug, please don't hesitate to create a new issue. However, please be aware that it might take some time to get an answer.

If you need immediate or commercial support, feel free to send me a mail at github@webklex.com.

Change log

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email github@webklex.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

Fetch all your bookmarked tweets and make them accessible through a webinterface.

Resources

License

Stars

Watchers

Forks

Packages

No packages published