目录
目录README.md

Google Authenticator Export Swift Parser

Get all the data from the Google Authenticator export data link otpauth-migration://offline?data= in one line in Swift.

Installation

Swift Package Manager

You can use Swift Package Manager and specify dependency in Package.swift by adding this:

dependencies: [
    .package(url: "https://github.com/svyatoynick/GAuthSwiftParser.git", .upToNextMajor(from: "1.0.0"))
]

CocoaPods

To install through CocoaPods, simply add the following line to your Podfile:

pod 'GAuthSwiftParser'

Then run pod install in the project directory to install.

Usage

Before you start, you need to get the link from the QR code to export Google Authenticator data in format: otpauth-migration://offline?data=YourData

After that we get the data from this link through the getAccounts(code: String) function:

// This is an example code, replace it with your own
let code = "otpauth-migration://offline?data=CiAKCkhlbGxvQp6tvu8SBEFsZXgaBkFtYXpvbiABKAEwAgogCgocIRIITUedUv2HEgRNYXJ5GgZHb29nbGUgASgBMAIKHwoKGekSCE1H3VL9hxIFRGFyeWEaBExvdmUgASgBMAIQARgBIAA%3D"
        
let data = GAuthSwiftParser.getAccounts(code: code)

After that you can work with data, an array of the class AccountModel that contains 3 parameters: name, issuer andsecret. Also available is the getLink() function, through which you can get an OTP link from the received data.

License

GAuthSwiftParser is available under the MIT license. See the LICENSE file for more info.

Acknowledgements

GAuthSwiftParser depends on the following open-source projects:

关于
1.5 MB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号