diff --git a/Excel-REST - Blank.xlsm b/Excel-REST - Blank.xlsm index 2daf5d88..d407d627 100644 Binary files a/Excel-REST - Blank.xlsm and b/Excel-REST - Blank.xlsm differ diff --git a/authenticators/DigestAuthenticator.cls b/authenticators/DigestAuthenticator.cls index c42c872f..215e6747 100644 --- a/authenticators/DigestAuthenticator.cls +++ b/authenticators/DigestAuthenticator.cls @@ -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) ' diff --git a/authenticators/EmptyAuthenticator.cls b/authenticators/EmptyAuthenticator.cls index bf1fcd43..8c76d7fa 100644 --- a/authenticators/EmptyAuthenticator.cls +++ b/authenticators/EmptyAuthenticator.cls @@ -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: ' diff --git a/authenticators/FacebookAuthenticator.cls b/authenticators/FacebookAuthenticator.cls index 79657b22..46fe28e3 100644 --- a/authenticators/FacebookAuthenticator.cls +++ b/authenticators/FacebookAuthenticator.cls @@ -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) ' diff --git a/authenticators/GoogleAuthenticator.cls b/authenticators/GoogleAuthenticator.cls index 8c2d1945..53a342f7 100644 --- a/authenticators/GoogleAuthenticator.cls +++ b/authenticators/GoogleAuthenticator.cls @@ -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 @@ -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 ' @@ -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 diff --git a/authenticators/HttpBasicAuthenticator.cls b/authenticators/HttpBasicAuthenticator.cls index 02ab1719..2c3c74c9 100644 --- a/authenticators/HttpBasicAuthenticator.cls +++ b/authenticators/HttpBasicAuthenticator.cls @@ -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) ' diff --git a/authenticators/OAuth1Authenticator.cls b/authenticators/OAuth1Authenticator.cls index 0199f651..e8a7e4ff 100644 --- a/authenticators/OAuth1Authenticator.cls +++ b/authenticators/OAuth1Authenticator.cls @@ -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) ' diff --git a/authenticators/OAuth2Authenticator.cls b/authenticators/OAuth2Authenticator.cls index 482cb73a..5caf36c4 100644 --- a/authenticators/OAuth2Authenticator.cls +++ b/authenticators/OAuth2Authenticator.cls @@ -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) ' diff --git a/authenticators/TwitterAuthenticator.cls b/authenticators/TwitterAuthenticator.cls index 95fefbf1..5da3d259 100644 --- a/authenticators/TwitterAuthenticator.cls +++ b/authenticators/TwitterAuthenticator.cls @@ -8,7 +8,7 @@ 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 @@ -16,7 +16,7 @@ Attribute VB_Exposed = False ' - 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) ' diff --git a/examples/Excel-REST - Example.xlsm b/examples/Excel-REST - Example.xlsm index e3722abe..1735593a 100644 Binary files a/examples/Excel-REST - Example.xlsm and b/examples/Excel-REST - Example.xlsm differ diff --git a/specs/Excel-REST - Specs.xlsm b/specs/Excel-REST - Specs.xlsm index caba2690..d50ddb83 100644 Binary files a/specs/Excel-REST - Specs.xlsm and b/specs/Excel-REST - Specs.xlsm differ diff --git a/specs/GoogleAuthenticatorSpecs.bas b/specs/GoogleAuthenticatorSpecs.bas index 159d4968..10c72caf 100644 --- a/specs/GoogleAuthenticatorSpecs.bas +++ b/specs/GoogleAuthenticatorSpecs.bas @@ -53,7 +53,3 @@ Public Function Specs() As SpecSuite InlineRunner.RunSuite Specs End Function - - - -