Re: Twython/tweepy assistance

2020-10-16 Thread AudioGames . net Forum — Developers room : Turret via Audiogames-reflector


  


Re: Twython/tweepy assistance

Alright,Yes, I saw that it was having issues last night, but it still is today. Now looking at the page...Name appears to be filled out.Hmm, not sure about app icon, would that effect it?app ID appears to be filled out by Twitter itself.Description is as well.Permissions are read, write, and direct message.Some OAuth stuff,and a feedback section.And I just tested it now and the same result.Any more ideas? Are there more settings somewhere?

URL: https://forum.audiogames.net/post/580692/#p580692




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Twython/tweepy assistance

2020-10-16 Thread AudioGames . net Forum — Developers room : Lucas1853 via Audiogames-reflector


  


Re: Twython/tweepy assistance

Carter is correct. Another possibility is that it was a temporary malfunction of the Twitter API, although this is assuming you haven't tried since. Last night, Twitter API was having issues for several hours.

URL: https://forum.audiogames.net/post/580681/#p580681




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Twython/tweepy assistance

2020-10-16 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector


  


Re: Twython/tweepy assistance

Neither library is to blame here, as they are nothing more than higher-level API wrappers. I'm guessing the culprit is the app you generated from within the twitter developer dashboard. Make sure all fields are filled.

URL: https://forum.audiogames.net/post/580673/#p580673




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Twython/tweepy assistance

2020-10-16 Thread AudioGames . net Forum — Developers room : Turret via Audiogames-reflector


  


Twython/tweepy assistance

I decided to take it upon myself to try and make a small twitter bot in Python. The first library I tried was Tweepy, but I faced the issue I am still, using Twython.So, when I post a Tweet, it posts the text, and this is the result.Ty Gillespie,  OK test again? 11 hours ago,As you can see, the client name field is left blank, in the case of TW Blue and Tween, and on iOS/Android, it says "Null". I'm not sure if I'm simply missing something, but here's the code. It was basically the same with tweepy, but with slightly different func names.from twython import Twythonimport sysdef main():    error_file = open("errors.log", "a")    sys.stderr = error_file    CONSUMER_KEY = "my_key"    CONSUMER_SECRET = "my_secret"    ACCESS_TOKEN = "my_token"    ACCESS_TOKEN_SECRET = "my_token_secret"    client = Twython(CONSUMER_KEY, CONSUMER_SECRET , ACCESS_TOKEN, ACCESS_TOKEN_SECRET)    print("What do you want to post?")    tweet = input()    if tweet == "":        print("No tweet typed.")        input()        sys.exit()    else:        client.update_status(status=tweet)        print("Done!")        input()        sys.exit()if __name__ == "__main__":    main()Any assistance would be great! Thanks!

URL: https://forum.audiogames.net/post/580667/#p580667




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector