So i am stuck trying to figure out how to retweet a tweet with a comment, this was added to twitter recently.
this is when you click retweet and add a comment to the retweet and retweet it. basically this is what i am talking about :
i was looking at the api and count find a method dedicated to this. And even the retweet method does not have a parameter where i can pass text.
So i was wondering is there a way to do this?
api.update_status(stat_forme, tweet_cid)
because its throwing a syntax error using your code – Iglesiasapi.update_status(stat_forme, tweet_cid)
worksapi.update_status(stat_forme)
doesn't work... 403 bad request but if i add status like this it worksapi.update_status(status=stat_forme)
– Exsanguine