Using the example given in the @Anywhere documentation on ‘working with the current user’, do individual invocations of the currentUser.data function each count against any rate limits? Does the following code snippet result in two separate counts against the rate limit for the app, one for getting the screen name and one for getting the profile image url?
if (T.isConnected()) {
currentUser = T.currentUser;
screenName = currentUser.data(‘screen_name’);
profileImage = currentUser.data(‘profile_image_url’);
profileImageTag = “
”;
$(’#twitter-connect-placeholder’).append("Logged in as " + profileImageTag + " " + screenName);
}