├── .github └── workflows │ └── swift.yml ├── .gitignore ├── AuthLibrary.podspec ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Examples └── GAuth-Apple │ ├── .gitignore │ ├── GAuth-Apple.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── GAuth iOS.xcscheme │ │ └── GAuth macOS.xcscheme │ ├── GAuth-iOS │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── WindowAccessor.swift │ ├── GAuth-macOS │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── WindowAccessor.swift │ └── gauth-macos.entitlements │ └── Shared │ ├── ContentView.swift │ ├── GAuth.swift │ ├── GAuthDemoApp.swift │ └── gmailv1.swift ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── SECURITY.md ├── Sources ├── Examples │ ├── GitHub │ │ ├── GitHub.swift │ │ └── main.swift │ ├── Google │ │ ├── Google.swift │ │ └── main.swift │ ├── Meetup │ │ ├── Meetup.swift │ │ └── main.swift │ ├── README.md │ ├── Spotify │ │ ├── Spotify.swift │ │ └── main.swift │ ├── TokenSource │ │ └── main.swift │ └── Twitter │ │ ├── Twitter.swift │ │ └── main.swift ├── OAuth1 │ ├── BrowserTokenProvider.swift │ ├── Connection.swift │ ├── Token.swift │ ├── TokenProvider.swift │ ├── encode.swift │ └── openURL.swift ├── OAuth2 │ ├── AuthError.swift │ ├── BrowserTokenProvider.swift │ ├── Code.swift │ ├── Connection.swift │ ├── DefaultTokenProvider.swift │ ├── FCMTokenProvider │ │ ├── FCMTokenProvider.swift │ │ ├── README.md │ │ └── index.js │ ├── GoogleCloudMetadataTokenProvider.swift │ ├── GoogleRefreshTokenProvider.swift │ ├── PlatformNativeTokenProvider.swift │ ├── Refresh.swift │ ├── ServiceAccountTokenProvider │ │ ├── ASN1.swift │ │ ├── JWT.swift │ │ ├── RSA.swift │ │ └── ServiceAccountTokenProvider.swift │ ├── Token.swift │ ├── TokenProvider.swift │ └── openURL.swift ├── SwiftyBase64 │ ├── Alphabets.swift │ ├── Base64.swift │ └── LICENSE └── TinyHTTPServer │ └── TinyHTTPServer.swift ├── credentials ├── README.md ├── github.json ├── google.json ├── meetup.json ├── spotify.json └── twitter.json └── renovate.json /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Package.resolved 2 | .swiftpm 3 | .build 4 | -------------------------------------------------------------------------------- /AuthLibrary.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/AuthLibrary.podspec -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/GAuth-Apple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/.gitignore -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-Apple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-Apple.xcodeproj/xcshareddata/xcschemes/GAuth iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-Apple.xcodeproj/xcshareddata/xcschemes/GAuth iOS.xcscheme -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-Apple.xcodeproj/xcshareddata/xcschemes/GAuth macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-Apple.xcodeproj/xcshareddata/xcschemes/GAuth macOS.xcscheme -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-iOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-iOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-iOS/WindowAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-iOS/WindowAccessor.swift -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/Info.plist -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/WindowAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/WindowAccessor.swift -------------------------------------------------------------------------------- /Examples/GAuth-Apple/GAuth-macOS/gauth-macos.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/GAuth-macOS/gauth-macos.entitlements -------------------------------------------------------------------------------- /Examples/GAuth-Apple/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/Shared/ContentView.swift -------------------------------------------------------------------------------- /Examples/GAuth-Apple/Shared/GAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/Shared/GAuth.swift -------------------------------------------------------------------------------- /Examples/GAuth-Apple/Shared/GAuthDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/Shared/GAuthDemoApp.swift -------------------------------------------------------------------------------- /Examples/GAuth-Apple/Shared/gmailv1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Examples/GAuth-Apple/Shared/gmailv1.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sources/Examples/GitHub/GitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/GitHub/GitHub.swift -------------------------------------------------------------------------------- /Sources/Examples/GitHub/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/GitHub/main.swift -------------------------------------------------------------------------------- /Sources/Examples/Google/Google.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Google/Google.swift -------------------------------------------------------------------------------- /Sources/Examples/Google/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Google/main.swift -------------------------------------------------------------------------------- /Sources/Examples/Meetup/Meetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Meetup/Meetup.swift -------------------------------------------------------------------------------- /Sources/Examples/Meetup/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Meetup/main.swift -------------------------------------------------------------------------------- /Sources/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/README.md -------------------------------------------------------------------------------- /Sources/Examples/Spotify/Spotify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Spotify/Spotify.swift -------------------------------------------------------------------------------- /Sources/Examples/Spotify/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Spotify/main.swift -------------------------------------------------------------------------------- /Sources/Examples/TokenSource/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/TokenSource/main.swift -------------------------------------------------------------------------------- /Sources/Examples/Twitter/Twitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Twitter/Twitter.swift -------------------------------------------------------------------------------- /Sources/Examples/Twitter/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/Examples/Twitter/main.swift -------------------------------------------------------------------------------- /Sources/OAuth1/BrowserTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/BrowserTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth1/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/Connection.swift -------------------------------------------------------------------------------- /Sources/OAuth1/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/Token.swift -------------------------------------------------------------------------------- /Sources/OAuth1/TokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/TokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth1/encode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/encode.swift -------------------------------------------------------------------------------- /Sources/OAuth1/openURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth1/openURL.swift -------------------------------------------------------------------------------- /Sources/OAuth2/AuthError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/AuthError.swift -------------------------------------------------------------------------------- /Sources/OAuth2/BrowserTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/BrowserTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/Code.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/Code.swift -------------------------------------------------------------------------------- /Sources/OAuth2/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/Connection.swift -------------------------------------------------------------------------------- /Sources/OAuth2/DefaultTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/DefaultTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/FCMTokenProvider/FCMTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/FCMTokenProvider/FCMTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/FCMTokenProvider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/FCMTokenProvider/README.md -------------------------------------------------------------------------------- /Sources/OAuth2/FCMTokenProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/FCMTokenProvider/index.js -------------------------------------------------------------------------------- /Sources/OAuth2/GoogleCloudMetadataTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/GoogleCloudMetadataTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/GoogleRefreshTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/GoogleRefreshTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/PlatformNativeTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/PlatformNativeTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/Refresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/Refresh.swift -------------------------------------------------------------------------------- /Sources/OAuth2/ServiceAccountTokenProvider/ASN1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/ServiceAccountTokenProvider/ASN1.swift -------------------------------------------------------------------------------- /Sources/OAuth2/ServiceAccountTokenProvider/JWT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/ServiceAccountTokenProvider/JWT.swift -------------------------------------------------------------------------------- /Sources/OAuth2/ServiceAccountTokenProvider/RSA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/ServiceAccountTokenProvider/RSA.swift -------------------------------------------------------------------------------- /Sources/OAuth2/ServiceAccountTokenProvider/ServiceAccountTokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/ServiceAccountTokenProvider/ServiceAccountTokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/Token.swift -------------------------------------------------------------------------------- /Sources/OAuth2/TokenProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/TokenProvider.swift -------------------------------------------------------------------------------- /Sources/OAuth2/openURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/OAuth2/openURL.swift -------------------------------------------------------------------------------- /Sources/SwiftyBase64/Alphabets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/SwiftyBase64/Alphabets.swift -------------------------------------------------------------------------------- /Sources/SwiftyBase64/Base64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/SwiftyBase64/Base64.swift -------------------------------------------------------------------------------- /Sources/SwiftyBase64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/SwiftyBase64/LICENSE -------------------------------------------------------------------------------- /Sources/TinyHTTPServer/TinyHTTPServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/Sources/TinyHTTPServer/TinyHTTPServer.swift -------------------------------------------------------------------------------- /credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/README.md -------------------------------------------------------------------------------- /credentials/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/github.json -------------------------------------------------------------------------------- /credentials/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/google.json -------------------------------------------------------------------------------- /credentials/meetup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/meetup.json -------------------------------------------------------------------------------- /credentials/spotify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/spotify.json -------------------------------------------------------------------------------- /credentials/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/credentials/twitter.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-swift/HEAD/renovate.json --------------------------------------------------------------------------------