I'm using Twython (Python wrapper for Twitter API, found here.)
Objective: I'm trying to make a simple bot that searches for a keyword and replies to tweets with the keyword in them.
Example: Send search request to search for #stackoverflow
, reply to tweets that have #stackoverflow
in them with "StackOverflow is the best!"
Problem: Can't reply to a tweet without the tweet id (found in the url of any permalinked tweet). An example of this would be to take any tweet and link someone to it. The number at the end of the link is the tweet id.
What I've Tried: There's not much I can try. I want this to be as simple as possible, with no complex workarounds. I'm sure there's some way to do this without having to go too far out of my way. I've exhausted Google and Twython's documentation and Twitter's API documentation. =/ Anyone