mirror of
https://github.com/iv-org/youtube-trusted-session-generator.git
synced 2024-11-23 05:49:57 +00:00
This is a generator for getting a session that passes all the checks from YouTube side
.github/workflows | ||
docker/scripts | ||
.gitignore | ||
Dockerfile | ||
index.py | ||
LICENSE | ||
README.md | ||
requirements.txt |
YouTube trusted session generator
Description
This script will output two parameters: po_token and visitor_data. Needed for passing YouTube checks in Invidious.
Tutorial without Docker
- Install Chromium or Google Chrome.
- Create a new virtualenv:
virtualenv venv
- Activate the virtualenv:
source venv/bin/activate
- Install the dependencies:
pip install -r requirements.txt
- Run the script:
python index.py
- Copy paste the values of these the two parameters (po_token and visitor_data) in config.yaml
po_token: XXX visitor_data: XXX
- Restart Invidious.
Tutorial with Docker
- Run the script:
docker run quay.io/invidious/youtube-trusted-session-generator
- Copy paste the values of these the two parameters (po_token and visitor_data) in config.yaml
po_token: XXX visitor_data: XXX
- Restart Invidious.