I'm getting results back from the twitter search/tweets
api. The problem is I'm trying to recreate a link back to the original tweet...which usually is in the form of:
http://twitter.com/{user.screen_name}/status/{id}
The problem is if something is a Retweet then the user.screen_name
breaks the link (404) because a retweet points to the original tweet's id, not id of the tweet that is a retweet (if that makes sense)...so for retweets I need link to be http://twitter.com/{retweeted_user.screen_name}/status/{id}
I cannot see a flag in the response that tells me if an object is a retweet or not since there is no actual "retweet" object.
I'm surprised twitter doesn't actually a simple metadata.source_url
or something easily accessible rather than me having to rebuild a link to twitter original tweet page.
https://twitter.com/statuses/{id}
if you do not mind a redirect. – pii_ke/status/
and gave up. If yuu make that an answer I'll accept it. – chovy