When i Open a Profile from a User lets say “Lady Gaga” i can access Followers and Follows with the Twitter API.
But there is also the Number of Tweets Displayed can i access this Number i repeat just the Count of Tweets not the Tweets in Detail.
I searched 2 Days for a Solution?
function TwitterFollowers(aUsername)
{
user = _twitterFetchUserData(aUsername);
return user.followers_count;
}
This seems to work with JavaScript with an Oauth access.
But the Tweets Number does not!
Thank You for any Help!
Greetings Schraufilizous