I'm trying to build a desktop twitter application.
I've got the oauth thing down, and can post status' no problems.
I'm not trying to retrieve a users home timeline but am having no such luck.
Any help is greatly appreciated. Here's my code:
Dim tokens As New OAuthTokens
tokens.AccessToken = requestToken2.Token
tokens.AccessTokenSecret = requestToken2.TokenSecret
tokens.ConsumerKey = consumerKey
tokens.ConsumerSecret = consumerSecret
Dim lastStatusID As Decimal = 123456
Dim properties As New TimelineOptions()
properties.UseSSL = True
properties.SinceStatusId = lastStatusID
Dim hometimeline As TwitterResponse(Of TwitterStatusCollection) = TwitterTimeline.HomeTimeline(tokens, properties)
Dim tweet As String
For Each tweet In hometimeline
Next