Skip to content
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

Add note re: URL encoding password #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AddqBittorrentTrackers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ qbt_port="8081"
qbt_username="admin"
# Password to access to Web UI
qbt_password="adminadmin"
# note: complicated passwords need to be URL encoded.
# If you are getting this error: "curl: (22) The requested URL returned error: 403" then you likely need to do this
# you can run this command to get your password URL encoded: jq -rn --arg x 'complicated password' '$x|@uri'

# If true (lowercase) the script will inject trackers inside private torrent too (not a good idea)
ignore_private=false
Expand Down