Skip to content

Instantly share code, notes, and snippets.

@KonradIT
Created February 16, 2019 19:27
Show Gist options
  • Star 90 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save KonradIT/0bd7243ebe8d7b3e231603880acab7cf to your computer and use it in GitHub Desktop.
Save KonradIT/0bd7243ebe8d7b3e231603880acab7cf to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys, os, time
import tweepy
keys = dict(
consumer_key='_YOUR_CONSUMER_KEY',
consumer_secret='_YOUR_SECRET_KEY',
access_token='_YOUR_ACCESS_TOKEN',
access_token_secret='_YOUR_ACCESS_TOKEN_SECRET'
)
user = "@YOUR_USERNAME"
auth = tweepy.OAuthHandler(keys['consumer_key'], keys['consumer_secret'])
auth.set_access_token(keys['access_token'], keys['access_token_secret'])
api = tweepy.API(auth)
def tweet():
message=input("tweet: ")
api.update_status(message)
time.sleep(1000)
if __name__ == "__main__":
while 1:
tweet()
@mnynbot
Copy link

mnynbot commented Feb 2, 2021

When creating your twitter application, name the app what you want the source tag to be. NOTE: renaming your existing app will not change it in tweepy

Any solution on how to do this if I already have an existing app?

@IndraIsSad
Copy link

I have the same problem (tweet not showing) and it gives me this as an error: https://imgur.com/a/9K2ZaZj
Anything I could've done wrong?

This is a tweepy error, try reinstalling via pip

https://cozy-says.anime-girls-are-the.best/3UF0HaW8 I've tried and my application is on all permissions, what happened?

@nbendall34
Copy link

I have the same problem (tweet not showing) and it gives me this as an error: https://imgur.com/a/9K2ZaZj
Anything I could've done wrong?

This is a tweepy error, try reinstalling via pip

https://cozy-says.anime-girls-are-the.best/3UF0HaW8 I've tried and my application is on all permissions, what happened?

That link look very dodgy, is it shortened?

@nbendall34
Copy link

I have the same problem (tweet not showing) and it gives me this as an error: https://imgur.com/a/9K2ZaZj
Anything I could've done wrong?

This is a tweepy error, try reinstalling via pip

https://cozy-says.anime-girls-are-the.best/3UF0HaW8 I've tried and my application is on all permissions, what happened?

Can you pastebin/message me your code (without api keys) for me to look at?

@nbendall34
Copy link

When creating your twitter application, name the app what you want the source tag to be. NOTE: renaming your existing app will not change it in tweepy

Any solution on how to do this if I already have an existing app?

You can pull the Application Keys from an existing app

@IndraIsSad
Copy link

I have the same problem (tweet not showing) and it gives me this as an error: https://imgur.com/a/9K2ZaZj
Anything I could've done wrong?

This is a tweepy error, try reinstalling via pip

https://cozy-says.anime-girls-are-the.best/3UF0HaW8 I've tried and my application is on all permissions, what happened?

Can you pastebin/message me your code (without api keys) for me to look at?

I've managed to fix it (by creating a new app) but now there is another error - It doesn't show the "Twitter for {insert here}" text
image

@nbendall34
Copy link

nbendall34 commented Feb 10, 2021 via email

@gurchpog
Copy link

AAAAAAAAAAAAAAAAAAAAANujQAEAAAAANRMSNOGfQY9BFsG5aeD1XYQHw%2Fg%3DVoL0gLaW3KMZ7vY7nsoqIqZvlIVAEsTd6jeySj8EfOpD6n7gTr

@amelie-gif
Copy link

I want my twitter to be IPhone

me as well how do we do this simply

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment