Skip to content

Instantly share code, notes, and snippets.

@jz5
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jz5/7ebf869702d60fb03b3b to your computer and use it in GitHub Desktop.
Save jz5/7ebf869702d60fb03b3b to your computer and use it in GitHub Desktop.
' Imports LinqToTwitter を追加しておく
' Twitter 認証に使うオブジェクトを返す
Private Function CreateSingleUserAuthorizer() As SingleUserAuthorizer
Dim s = System.Configuration.ConfigurationManager.AppSettings
Dim auth = New SingleUserAuthorizer With {
.CredentialStore = New SingleUserInMemoryCredentialStore With
{
.ConsumerKey = s("ConsumerKey"),
.ConsumerSecret = s("ConsumerSecret"),
.AccessToken = s("AccessToken"),
.AccessTokenSecret = s("AccessTokenSecret")
}
}
Return auth
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment