I am using the Twitter web-intents / javascript API, and I'm a bit surprised. What I'd like to do is listen for an event after a tweet occurs. Following their example:
twttr.events.bind('tweet', function(event) {
// Do something there
});
However, what I'd like to do is store the tweet id, or some other relevant information. If I take a look at the event
object, there doesn't appear to be any relevant information in the data
attribute.
Is it possible to obtain the tweet ID (or any other details about the tweet) by listening to a tweet event?