Why is my Twitter bot not authenticating while creating bot?

Issue

This Content is from Stack Overflow. Question asked by Rohit Mishra

why I am always getting authentication error while creating bot for twitter. Though I am using correct keys. Below is the code:-

auth = tweepy.OAuthHandler("XXXX", "XXX")
auth.set_access_token("C-HmO3PQt0Z1X44FY9v9jmk53rL7x5xB", "VCCCC")
api = tweepy.API(auth, wait_on_rate_limit = True)

try:
    api.verify_credentials()
    print("Authentication Successful")
except:
    print("Authentication Error")



Solution

This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.

This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.

people found this article helpful. What about you?