In the past I would use the following to capture which retweet button was pressed in the event that their were more than one on a given page.
twttr.events.bind('retweet', function (e) {
alert(e.data.source_tweet_id);
});
e.data.source_tweet_id used to return the ID of a retweet, found at the end of a tweet link.
IE: https://twitter.com/FortuneMagazine/status/558089263523561472 is the TWEET
source_tweet_id would equal 558089263523561472 when retweeted.
Now it is some new random number when retweeted.
How can I capture which Retweet button was pressed now?