zeromega64twenty

x.com X Twitter Authentication Tester

Aug 30th, 2023 (edited)
419
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.74 KB | Source Code | 0 0
  1. # Quick script to check if you API credentials are communicating with x.com
  2. from twython import Twython
  3. from termcolor import colored
  4.  
  5. consumer_key = "ADD YOUR KEY HERE"
  6. consumer_secret = "ADD YOUR KEY HERE"
  7. access_token = "ADD YOUR KEY HERE"
  8. access_token_secret = "ADD YOUR KEY HERE"
  9.  
  10. # Authenticate?
  11. twitter = Twython(
  12.     consumer_key,
  13.     consumer_secret,
  14.     access_token,
  15.     access_token_secret
  16. )
  17.  
  18. def check_api_status():
  19.     try:
  20.         user_info = twitter.verify_credentials()
  21.         user_screen_name = user_info['screen_name']
  22.         print(colored(f"API is working for user: {user_screen_name}", "green"))
  23.     except Exception as e:
  24.         print(colored(f"API is not working. Error: {e}", "red"))
  25.  
  26. check_api_status()
  27.  
Advertisement
Comments
  • User was banned
  • adrianytania
    5 days
    # CSS 0.78 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://rawtext.host/raw?44lh4m
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without any verification from Swapzone — instant swap).
  • User was banned
  • Souhaile
    4 days
    # CSS 0.05 KB | 0 0
    1. You literally stole it from https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment