alfred-workflow-gauth icon indicating copy to clipboard operation
alfred-workflow-gauth copied to clipboard

not work with alfred version Alfred 5.0.1

Open songhao8080 opened this issue 3 years ago • 3 comments

not work with alfred version Alfred 5.0.1

image

not account appear

songhao8080 avatar Aug 22 '22 11:08 songhao8080

  1. Open Google Authenticator directory in finder.
  2. Open alfred.py, replace code preferences = plistlib.readPlist('info.plist') with
    with open('info.plist', 'rb') as fp :
      preferences = plistlib.loads(fp.read())
    
  3. Save and retry.

Serifx avatar Dec 28 '22 06:12 Serifx

  1. Open Google Authenticator directory in finder.
  2. Open alfred.py, replace code preferences = plistlib.readPlist('info.plist') with
    with open('info.plist', 'rb') as fp :
      preferences = plistlib.loads(fp.read())
    
  3. Save and retry.

It didn't work for me. For anyone out there struggling with the same issue in macOS 12.x, try this version that uses Python3:

https://github.com/tbrek/alfred-workflow-gauth/blob/master/Google%20Authenticator.alfredworkflow?raw=true

Source: https://www.alfredforum.com/topic/4062-gauth-google-authenticator-time-based-two-factor-authentication/?do=findComment&comment=94149

pbdco avatar Mar 30 '24 09:03 pbdco