I'm using Twitter Web Intents to check if someone follows me. The problem now is; I am only getting my own screenname as callback in the event object.
twttr.events.bind('follow', function(event) {
alert(event.data.user_id);
});
Is there any way to get the followers screenname, so I can store it in the database. I want to use this as kind of "request invite"-function.
Thanks a lot.