예제 #1
0
        public async Task SetUserStatusesAsync(long userId)
        {
            var timeLine = await TwitterUtil.GetUserTweetAsync(this.account.TokensData, userId, this.maxId);

            if (timeLine.Count < 1)
            {
                return;
            }
            this.maxId  = timeLine[timeLine.Count - 1].Id - 1;
            this.userId = userId;

            SetStatuses(timeLine);
            this.isLoading = false;
        }