this is my code
IToken token = new Token(part.TwitterAccessTokenKey, part.TwitterAccessTokenSecret,
part.TwitterConsumerKey, part.TwitterConsumerSecret);
TokenSingleton.Token = token;
ITokenUser u = new TokenUser(token);
var list= u.GetHomeTimeline(20, true, true).ToList();
see result on screenshot
![Image](http://clip2net.com/clip/m251242/1390474459-clip-135kb.png)
Why the Creator has null values?
Comments: ** Comment from web user: linvi **
IToken token = new Token(part.TwitterAccessTokenKey, part.TwitterAccessTokenSecret,
part.TwitterConsumerKey, part.TwitterConsumerSecret);
TokenSingleton.Token = token;
ITokenUser u = new TokenUser(token);
var list= u.GetHomeTimeline(20, true, true).ToList();
see result on screenshot
![Image](http://clip2net.com/clip/m251242/1390474459-clip-135kb.png)
Why the Creator has null values?
Comments: ** Comment from web user: linvi **
Hi,
Sorry I thought I replied to your issue earlier.
The reason for that is that these properties are calculated on demand.
It means that until you click on the refresh button (in black) you will not be able to access the value.
Regards,
Linvi