We have a tweet link with a web intent href, and the twitter javascript preloaded onto the page. Code below. When a tweet is made, our function is passed the event object but the event contains only region and type. event.data however is null. that happened both on localhost as well as on the online dev version of our app.
At this point I am not sure what could be the source of the problem and what else we can do to debug it. Any suggestions welcome. Let me know if any follow up information would be useful. Thanks so much.
twttr.ready(function (twttr) {
// bind events here
twttr.events.bind('tweet', function(event) {
console.info(event);
alert(event.data);
});
});