{"id":30805416,"url":"https://github.com/simformsolutionspvtltd/ssgooglelogin","last_synced_at":"2025-10-11T05:13:52.270Z","repository":{"id":49752546,"uuid":"127731603","full_name":"SimformSolutionsPvtLtd/SSGoogleLogin","owner":"SimformSolutionsPvtLtd","description":"The GoogleSigninReusabelComponets for iOS is the easiest way to get data from Google .","archived":false,"fork":false,"pushed_at":"2024-04-22T05:20:55.000Z","size":102,"stargazers_count":22,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-11T06:56:26.740Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SimformSolutionsPvtLtd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-02T09:01:36.000Z","updated_at":"2024-12-25T03:54:27.000Z","dependencies_parsed_at":"2023-12-20T14:25:38.426Z","dependency_job_id":"17dc30a1-5b54-4892-a84b-2ca622882192","html_url":"https://github.com/SimformSolutionsPvtLtd/SSGoogleLogin","commit_stats":null,"previous_names":["simformsolutions/ssgooglelogin"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/SimformSolutionsPvtLtd/SSGoogleLogin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSGoogleLogin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSGoogleLogin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSGoogleLogin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSGoogleLogin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SimformSolutionsPvtLtd","download_url":"https://codeload.github.com/SimformSolutionsPvtLtd/SSGoogleLogin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSGoogleLogin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273842837,"owners_count":25177921,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-06T00:57:15.135Z","updated_at":"2025-10-11T05:13:47.251Z","avatar_url":"https://github.com/SimformSolutionsPvtLtd.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google Signin Reusable Components\n\n\nThe GoogleSigninReusabelComponets for iOS is the easiest way to get data  from Google.\n\n\n## Features\n\n- [x] Get Specific user data from Google\n\n## Requirements\n\n- iOS 11.2+\n- Xcode 14.3  \n  Note: For Xcode version lower than 14.3 use version 2.0.1\n\n## Installation\n\n#### Take LoginManager.swift and userData.Swift\nImport two files in your project and it's done\n\n#### Manually\n1. Configure Google App Settings for iOS (https://developers.google.com/identity/sign-in/ios/sign-in?ver=swift)\n2. Download Google SDK Or Pod's for iOS\n3. Add SDK to the Project\n4. Configure Xcode Project\n5. Connect App Delegate Using LoginManager.swift Methods\n6. Congratulations!\n\n## Usage example\n\n##### Developer must have to implement open url method in appdelegate file.\n\n```swift\n\n    func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation:\n    Any) -\u003e Bool {\n        return  SSGoogleManager.manager.handleOpenUrl(app: app, url: url)\n    }\n```\n##### For Version 3.0.0 (you can get default data when not passing any argument)\n\n```swift\nSSGoogleManager.manager.logInWithGoogle(clientId: \u003cClient_ID (StringFormat)\u003e, presenting: UIViewController) { result in\n    switch result {\n        case .success(let userData):\n            print(userData)\n        case .failure(let error):\n            print(error.localizedDescription)\n         }\n    } \n    didDisconnectBlock: { result in\n    switch result {\n        case .success(let userData):\n            print(userData)\n        case .failure(let error):\n            print(error.localizedDescription)\n        }\n    }\n```\n\n##### For Version 2.0.1 (you can get default data when not passing any argument)\n\n```swift\nSSGoogleManager.manager.logInWithGoogle(clientId: \u003cClient_ID (StringFormat)\u003e, controller: self, complitionBlock: { (userData, error) in\n    if error == nil {\n        print(userData ?? \"\")\n    } else {\n        print(error?.localizedDescription ?? \"\")\n    }\n    }) { (userData, error) in\n    if error == nil {\n        print(userData ?? \"\")\n    } else {\n        print(error?.localizedDescription ?? \"\")\n    }\n}\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimformsolutionspvtltd%2Fssgooglelogin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimformsolutionspvtltd%2Fssgooglelogin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimformsolutionspvtltd%2Fssgooglelogin/lists"}