{"id":21452724,"url":"https://github.com/couragecowardlydog/ionic-google-auth","last_synced_at":"2026-04-18T01:01:49.026Z","repository":{"id":112069947,"uuid":"144174831","full_name":"couragecowardlydog/ionic-google-auth","owner":"couragecowardlydog","description":" Ionic 3 native Google plus plugin Implementation ","archived":false,"fork":false,"pushed_at":"2018-08-24T05:48:45.000Z","size":9519,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T02:45:58.396Z","etag":null,"topics":["andorid","angular","authentication","google-api","google-api-client-library","googleplus","googleplus-profile","ionic","ionic-android","ionic-apps","ionic-auth","ionic-cordova","ionic-framework","ionic-ios","ionic-native","ionic-plugin","ionic2","ionic2-examples","ios","oauth2"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/couragecowardlydog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-08-09T15:57:46.000Z","updated_at":"2021-01-06T03:23:24.000Z","dependencies_parsed_at":"2023-05-04T05:18:53.630Z","dependency_job_id":null,"html_url":"https://github.com/couragecowardlydog/ionic-google-auth","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/couragecowardlydog/ionic-google-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/couragecowardlydog%2Fionic-google-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/couragecowardlydog%2Fionic-google-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/couragecowardlydog%2Fionic-google-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/couragecowardlydog%2Fionic-google-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/couragecowardlydog","download_url":"https://codeload.github.com/couragecowardlydog/ionic-google-auth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/couragecowardlydog%2Fionic-google-auth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31952206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["andorid","angular","authentication","google-api","google-api-client-library","googleplus","googleplus-profile","ionic","ionic-android","ionic-apps","ionic-auth","ionic-cordova","ionic-framework","ionic-ios","ionic-native","ionic-plugin","ionic2","ionic2-examples","ios","oauth2"],"created_at":"2024-11-23T04:31:40.145Z","updated_at":"2026-04-18T01:01:49.004Z","avatar_url":"https://github.com/couragecowardlydog.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google+ Auth - Ionic Implementation\n \nAs I wanted to integrate Google+ Auth in one my project, I started searching out documentation and tutorials for Google+ Auth Ionic Implementation. Unfortunately there is no proper documentation or tutorial to guide integration properly. Since I dont want any one to waste time on google, I made a small standalone implementation\n\nIf you want to integrate on existing Ionic App , use this command to retrive the SHA-1 KEY\n\n  `keytool -exportcert -keystore D:\\Personal\\ionic-google-auth\\gauth.keystore -list -v`\n  \nHere `D:\\Personal\\ionic-google-auth\\gauth.keystore` is path to my keystore \n\nIf you want to integrate on a new project, make sure you always test with signed APK , use the following command to generate SIGNED CERTIFICATE\n\n `keytool -genkey -v -keystore gauth.keystore -alias gauth -keyalg RSA -keysize 2048 -validity 100000`\n \n\n With SHA-1 KEY Obtained from the previous step , navigate to https://console.developers.google.com/apis/dashboard and enable `Google+ API\n` \n\nNext move is to create credentials , https://console.developers.google.com/apis/credentials\n\nClick on `Create Credentials` to create a OAuth Client ID . Use the retrived `SHA-1 signing-certificate fingerprint` and your `package name` in config.xml to complete the step\n\n![](https://github.com/VivekanandanS/ionic-google-auth/blob/master/src/assets/imgs/googel.png)\n\nOnce you completed this you'll get client ID, now you can process to ionic implementation.\n\n`ionic cordova plugin add cordova-plugin-googleplus --save --variable REVERSED_CLIENT_ID=myreversedclientid `\n\nIf you are building a hybrid application (iOS and Android), or an Android application, you have to replace myreversedclientid with the reverse value of Client ID in your Release credential generated , on Google Developer's Console, this will be: \"com.googleusercontent.apps.uniqueId\", without quotes. Example: '123-abc123.apps.googleusercontent.com' becomes 'com.googleusercontent.apps.123-abc123'.\n\nNow all its done, play with your code . Make sure you always build and test with signed apk. So that you dont need to update SHA-1 Certificate of your APK everytime in the console\n\n\n\nGAuth             |  GAuth\n:-------------------------:|:-------------------------:\n![](https://github.com/VivekanandanS/ionic-google-auth/blob/master/src/assets/imgs/1.png)  |  ![](https://github.com/VivekanandanS/ionic-google-auth/blob/master/src/assets/imgs/2.png)\n\nGAuth            |  GAuth\n:-------------------------:|:-------------------------:\n![](https://github.com/VivekanandanS/ionic-google-auth/blob/master/src/assets/imgs/3.png)  |  ![](https://github.com/VivekanandanS/ionic-google-auth/blob/master/src/assets/imgs/4.png)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcouragecowardlydog%2Fionic-google-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcouragecowardlydog%2Fionic-google-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcouragecowardlydog%2Fionic-google-auth/lists"}