Grant a Twitter application to use your Twitter account on your behalf
Find a file
Julien Riou 2a54cafff7
Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-02-23 17:46:01 +01:00
.gitignore Initial commit 2021-02-23 16:59:10 +01:00
.pre-commit-config.yaml Initial commit 2021-02-23 17:46:01 +01:00
LICENSE Initial commit 2021-02-23 16:59:10 +01:00
main.py Initial commit 2021-02-23 17:46:01 +01:00
README.md Initial commit 2021-02-23 17:46:01 +01:00
requirements.txt Initial commit 2021-02-23 17:46:01 +01:00

twitter-login

Grant a Twitter application to use your Twitter account on your behalf.

Description

If you have a CONSUMER_KEY and a CONSUMER_SECRET, you would like to have an ACCESS_TOKEN and an ACCESS_TOKEN_SECRET, you are at the right place!

Create consumer tokens

Go to the developper portal to create a Twitter application. Go to "Keys and tokens", then "Consumer keys" and "API key & secret". Those keys are CONSUMER_KEY and CONSUMER_SECRET settings.

Create access tokens

Clone this repository:

git clone https://github.com/jouir/twitter-login.git

Setup the Python virtual environment:

sudo apt install python3-virtualenv
virtualenv venv
source venv/bin/activate

Install requirements:

pip install -r requirements.txt

Read consumer keys:

read -s CONSUMER_KEY
read -s CONSUMER_SECRET

Execute the script:

python3 main.py --consumer-key ${CONSUMER_KEY} --consumer-secret ${CONSUMER_SECRET}

Open the URL to click on "Authorize app". Go back to the console and write the generated code.

Please go to https://api.twitter.com/oauth/authorize?oauth_token=xxxxx
Code: 0000000
Generated tokens:
ACCESS_TOKEN = *****
ACCESS_TOKEN_SECRET = *****

Done.

How to contribute

Please check issues to ensure the feature or bug you are facing is not already known.

Pull requests are highly appreciated.

Ensure to lint the code before submitting a pull-request:

docker run -it -v $(pwd):/mnt/ --rm debian:10 bash
apt-get update && apt-get upgrade -y && apt-get install -y python3-pip git
pip3 install pre-commit
cd /mnt
pre-commit run --all-files