Hey everyone! I’m a bit confused about using 3-legged OAuth. I have a developer account and want to post tweets in another account. I found this code snippet on the internet to help me find the access tokens of the other account.

auth = tweepy.OAuthHandler(consumer_key, consumer_secret_key) auth.secure = True auth_url = auth.get_authorization_url() print ('Please authorize: ' + auth_url) verifier = input('PIN: ').strip() auth.get_access_token(verifier) print(auth.access_token) print ("ACCESS_KEY = ",auth.access_token) print ("ACCESS_SECRET = ",auth.access_token_secret)

What should i enter as the callback url in the app authentication settings in my developer account?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.