Skip to content

Commit

Permalink
Authenticators v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Apr 2, 2014
1 parent 9b267c9 commit 8b879e0
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion authenticators/DigestAuthenticator.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 = False
''
' Digest Authenticator v2.0.3
' Digest Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Digest Authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/EmptyAuthenticator.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 = False
''
' Base for setting up authenticator v2.0.3
' Base for setting up authenticator v2.0.4
'
' @implements: IAuthenticator v3.*
' @author:
Expand Down
2 changes: 1 addition & 1 deletion authenticators/FacebookAuthenticator.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
''
' Facebook Authenticator v2.0.3
' Facebook Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Facebook OAuth
Expand Down
2 changes: 1 addition & 1 deletion 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.3
' Google Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for "installed application" authentication for Google APIs
Expand Down
2 changes: 1 addition & 1 deletion authenticators/HttpBasicAuthenticator.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
''
' HttpBasicAuthenticator v2.0.3
' HttpBasicAuthenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize http basic authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth1Authenticator.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
''
' OAuth1 Authenticator v2.0.3
' OAuth1 Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth1 authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth2Authenticator.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
''
' OAuth2 Authenticator v2.0.3
' OAuth2 Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth2 authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/TwitterAuthenticator.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 = False
''
' Twitter Authenticator v2.0.3
' Twitter Authenticator v2.0.4
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API
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.
2 changes: 1 addition & 1 deletion specs/GoogleAuthenticatorSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Public Function Specs() As SpecSuite
Dim Scope As String
Scope = RestHelpers.URLDecode(Parts("Querystring"))
Scope = Mid$(Scope, InStr(1, Scope, "scope") + 6)
.Expect(Scope).ToEqual "https://www.googleapis.com/auth/analytics+https://www.googleapis.com/auth/userinfo.email+http://new_scope"
.Expect(Scope).ToEqual "https://www.googleapis.com/auth/analytics https://www.googleapis.com/auth/userinfo.email http://new_scope"
End With

InlineRunner.RunSuite Specs
Expand Down

0 comments on commit 8b879e0

Please sign in to comment.