Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Google Authenticator: Anyone using this with the changes to the Google API (from October/November 2018) #379

Open
swain1500 opened this issue Dec 17, 2018 · 5 comments

Comments

@swain1500
Copy link

swain1500 commented Dec 17, 2018

I have been using the Google Authenticator to download Gmail Contacts. I recently learned of changes to the Google APIs from October/November 2018. I believe these changes are impacting the Google Authenticator Access Tokens, but have not been able to resolve. Any insight into modifications needed to be made to the Google Authenticator Class Module to support the Google API changes would be greatly appreciated!

@udhara85
Copy link

I am having the same issue , any help would be greatly appreciated

@alamaz
Copy link

alamaz commented Jan 3, 2019

I proposed a #382 branch merge that solved the issue of the new OAuth API on my side
Happy new year !
Alamaz

@rrzadzki
Copy link

rrzadzki commented Feb 1, 2019

I've been having issues with the Dictionary implementation here -- the Get method throws an invalid procedure call when trying to grab from a dictionary within another dictionary.

@zgrose
Copy link

zgrose commented Feb 1, 2019

I've been having issues with the Dictionary implementation here -- the Get method throws an invalid procedure call when trying to grab from a dictionary within another dictionary.

You need to post some code.

Public Sub TestDict()

    Dim json As String
    json = "{ ""obj1"":{""foo"":""bar""}, ""prop1"":42}"
    
    Dim jObj As Dictionary
    Set jObj = ParseJson(json)
    
    Dim obj1 As Dictionary
    Set obj1 = jObj("obj1")
    
    Debug.Print obj1("foo")
    
End Sub

screen shot 2019-02-01 at 3 28 17 pm

@TekkeBln
Copy link

TekkeBln commented Mar 27, 2019

In Function auth_LoginExtractCode (GoogleAuthenticator.cls) should be made a small change.

Change Line 414 from
If VBA.UCase(auth_Element.NodeName) = "INPUT" Then
in
If VBA.UCase(auth_Element.NodeName) = "TEXTAREA" Then

After this change all is running perfect. It seems that Google had redesigned the Website.

Greetings

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants