DEV Community

Discussion on: How to change Twitter Source Label

Collapse
 
sunilaleti profile image
Sunil Aleti

I mentioned the process in comments section.
Kindly check it

Collapse
 
mkcool142 profile image
MKCOOL142

import tweepy
auth = tweepy.OAuthHandler("Secret", "secret")
auth.set_access_token("secret", "Secret")
api = tweepy.API(auth)
reply = input(" ")
tweetId = input(" ")
api.update_status(reply, in_reply_to_status_id = tweetId, auto_populate_reply_metadata=True)
print ("Done!")

This is my solution

Thread Thread
 
arzikielt profile image
arzikiel tenebris • Edited

sorry i'm kinda retard,can you make an example?,(i don't know what's my mistake but it didn't work)

Some comments have been hidden by the post's author - find out more