Hello guys 
Well, I’ve been making a sort of minimalist client for twitter only using anywhere but I’m unable to get the user mentions… after reading a bit the anywhere code, I found that doing this:
if (T.isConnected()) {
console.debug(T.currentUser.mentions());
}
Throws an object with a bunch of functions, which I don’t know how to use. Tracking the network I found the script made a successful request to https://api.twitter.com/1/statuses/mentions.json with my current access token in a get variable, and that the request answered with my last mentions in a json format. So they should be stored somewhere! How can I get them?
Many thanks for such a great API.