I would like to know this also. It seems TwitterVB DLL gave a nice clean way of interfacing to Twitter, compared to the rubbish we have to wade through now. Can anyone provide a way of cleanly posting a tweet from within VB (examples) without using pages and pages of coding, just to essentially post a lousy 140 character tweet? The documentation for REST API v1.1 does not appear to contain any real-world examples.
This basic example used to work great (but now doesn’t):-
Dim twitter As New TwitterVB2.TwitterAPI
twitter.AuthenticateWith("<>", "<>", "<>", "<>")
MsgBox(twitter.AccountInformation.Name)
twitter.Update("Test Tweet")