Skip to content

Commit 4c5bede

Browse files
committed
Authenticators v2.0.2
1 parent 2e04f2b commit 4c5bede

12 files changed

+16
-21
lines changed

Excel-REST - Blank.xlsm

-503 Bytes
Binary file not shown.

authenticators/DigestAuthenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Digest Authenticator v2.0.1
11+
' Digest Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Digest Authentication
1515
' http://en.wikipedia.org/wiki/Digest_access_authentication
1616
'
17-
' @implements: IAuthenticator v3.0.1
17+
' @implements: IAuthenticator v3.*
1818
1919
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
2020
'

authenticators/EmptyAuthenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Base for setting up authenticator v2.0.1
11+
' Base for setting up authenticator v2.0.2
1212
'
13-
' @implements: IAuthenticator v3.0.1
13+
' @implements: IAuthenticator v3.*
1414
' @author:
1515
' @license:
1616
'

authenticators/FacebookAuthenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Facebook Authenticator v2.0.1
11+
' Facebook Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Facebook OAuth
1515
'
16-
' @implements: IAuthenticator v3.0.1
16+
' @implements: IAuthenticator v3.*
1717
1818
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
1919
'

authenticators/GoogleAuthenticator.cls

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Google Authenticator v2.0.1
11+
' Google Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for "installed application" authentication for Google APIs
@@ -41,7 +41,7 @@ Attribute VB_Exposed = True
4141
' ' Add authenticator to client
4242
' Set Client.Authenticator = Auth
4343
'
44-
' @implements: IAuthenticator v3.0.1
44+
' @implements: IAuthenticator v3.*
4545
4646
' @license: MIT (http://www.opensource.org/licenses/mit-license.php
4747
'
@@ -53,7 +53,6 @@ Private Const AuthorizationUrl As String = "https://accounts.google.com/o/oauth2
5353
Private Const RedirectUri As String = "urn:ietf:wg:oauth:2.0:oob"
5454
Private pAuthorizationCode As String
5555
Private pToken As String
56-
Private pScopes As Dictionary
5756

5857
' --------------------------------------------- '
5958
' Properties

authenticators/HttpBasicAuthenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' HttpBasicAuthenticator v2.0.1
11+
' HttpBasicAuthenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize http basic authentication
1515
'
16-
' @implements: IAuthenticator v3.0.1
16+
' @implements: IAuthenticator v3.*
1717
1818
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
1919
'

authenticators/OAuth1Authenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth1 Authenticator v2.0.1
11+
' OAuth1 Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth1 authentication
1515
'
16-
' @implements: IAuthenticator v3.0.1
16+
' @implements: IAuthenticator v3.*
1717
1818
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
1919
'

authenticators/OAuth2Authenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth2 Authenticator v2.0.1
11+
' OAuth2 Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth2 authentication
1515
' (Currently using client credentials flow only)
1616
'
17-
' @implements: IAuthenticator v3.0.1
17+
' @implements: IAuthenticator v3.*
1818
1919
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
2020
'

authenticators/TwitterAuthenticator.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Twitter Authenticator v2.0.1
11+
' Twitter Authenticator v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API
1515
'
1616
' - https://dev.twitter.com/docs/auth/application-only-auth
1717
' - https://github.com/timhall/Excel-REST/wiki/Implementing-your-own-IAuthenticator
1818
'
19-
' @implements: IAuthenticator v3.0.1
19+
' @implements: IAuthenticator v3.*
2020
2121
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
2222
'

examples/Excel-REST - Example.xlsm

6.03 KB
Binary file not shown.

0 commit comments

Comments
 (0)