Skip to content

Commit

Permalink
Authenticators v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Mar 23, 2014
1 parent 2e04f2b commit 4c5bede
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 21 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
4 changes: 2 additions & 2 deletions authenticators/DigestAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Digest Authenticator v2.0.1
' Digest Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Digest Authentication
' http://en.wikipedia.org/wiki/Digest_access_authentication
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author: tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
4 changes: 2 additions & 2 deletions authenticators/EmptyAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Base for setting up authenticator v2.0.1
' Base for setting up authenticator v2.0.2
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author:
' @license:
'
Expand Down
4 changes: 2 additions & 2 deletions authenticators/FacebookAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' Facebook Authenticator v2.0.1
' Facebook Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Facebook OAuth
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author: tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
5 changes: 2 additions & 3 deletions authenticators/GoogleAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' Google Authenticator v2.0.1
' Google Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for "installed application" authentication for Google APIs
Expand Down Expand Up @@ -41,7 +41,7 @@ Attribute VB_Exposed = True
' ' Add authenticator to client
' Set Client.Authenticator = Auth
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author: tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php
'
Expand All @@ -53,7 +53,6 @@ Private Const AuthorizationUrl As String = "https://accounts.google.com/o/oauth2
Private Const RedirectUri As String = "urn:ietf:wg:oauth:2.0:oob"
Private pAuthorizationCode As String
Private pToken As String
Private pScopes As Dictionary

' --------------------------------------------- '
' Properties
Expand Down
4 changes: 2 additions & 2 deletions authenticators/HttpBasicAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' HttpBasicAuthenticator v2.0.1
' HttpBasicAuthenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize http basic authentication
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
4 changes: 2 additions & 2 deletions authenticators/OAuth1Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' OAuth1 Authenticator v2.0.1
' OAuth1 Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth1 authentication
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
4 changes: 2 additions & 2 deletions authenticators/OAuth2Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' OAuth2 Authenticator v2.0.1
' OAuth2 Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth2 authentication
' (Currently using client credentials flow only)
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
4 changes: 2 additions & 2 deletions authenticators/TwitterAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Twitter Authenticator v2.0.1
' Twitter Authenticator v2.0.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API
'
' - https://dev.twitter.com/docs/auth/application-only-auth
' - https://github.com/timhall/Excel-REST/wiki/Implementing-your-own-IAuthenticator
'
' @implements: IAuthenticator v3.0.1
' @implements: IAuthenticator v3.*
' @author tim.hall.engr@gmail.com
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
Expand Down
Binary file modified examples/Excel-REST - Example.xlsm
Binary file not shown.
Binary file modified specs/Excel-REST - Specs.xlsm
Binary file not shown.
4 changes: 0 additions & 4 deletions specs/GoogleAuthenticatorSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,3 @@ Public Function Specs() As SpecSuite

InlineRunner.RunSuite Specs
End Function




0 comments on commit 4c5bede

Please sign in to comment.