Skip to content

Instantly share code, notes, and snippets.

@0xDispatch
0xDispatch / twitteroauth.py
Created February 7, 2023 09:49
a simple python script to generate Access tokens using twitter official keys.
import requests
from requests_oauthlib import OAuth1
#twitter official keys *Twitter for Android*
consumer_key = "3nVuSoBZnx6U4vzUxf5w"
consumer_secret = "Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys"
#change these to your user&pass
username = "NordsWarrior"
password = "NeverGonnaGiveYouUp"