{"id":20651706,"url":"https://github.com/droidninja/socialloginintegrationandroid","last_synced_at":"2025-08-16T19:09:06.832Z","repository":{"id":97035586,"uuid":"42403033","full_name":"DroidNinja/SocialLoginIntegrationAndroid","owner":"DroidNinja","description":"Android Project with helper classes for login through facebook, twitter and google","archived":false,"fork":false,"pushed_at":"2016-06-15T16:19:21.000Z","size":153,"stargazers_count":43,"open_issues_count":2,"forks_count":30,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-02T00:38:00.380Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://arunsharma.me/blog/integrate-facebook-google-login-android/","language":"Java","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/DroidNinja.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":"2015-09-13T16:17:59.000Z","updated_at":"2025-01-03T01:37:51.000Z","dependencies_parsed_at":"2024-03-09T03:15:55.535Z","dependency_job_id":null,"html_url":"https://github.com/DroidNinja/SocialLoginIntegrationAndroid","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DroidNinja/SocialLoginIntegrationAndroid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroidNinja%2FSocialLoginIntegrationAndroid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroidNinja%2FSocialLoginIntegrationAndroid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroidNinja%2FSocialLoginIntegrationAndroid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroidNinja%2FSocialLoginIntegrationAndroid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DroidNinja","download_url":"https://codeload.github.com/DroidNinja/SocialLoginIntegrationAndroid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroidNinja%2FSocialLoginIntegrationAndroid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270757903,"owners_count":24640162,"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-08-16T02:00:11.002Z","response_time":91,"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":"2024-11-16T17:28:59.402Z","updated_at":"2025-08-16T19:09:06.795Z","avatar_url":"https://github.com/DroidNinja.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SocialLoginIntegrationAndroid\nAndroid Project with helper classes for login through facebook, twitter and google\n\n![demo](http://i.imgur.com/R7XnpAC.png)\n![demo](http://i.imgur.com/1fi6UZd.png)\n\nI have used following libraries:\n\n**For Google Login**\n```\n  compile 'com.google.android.gms:play-services-auth:9.0.2'\n```\n\n1. Create app in Google Developer Console by filling out this form: \n\n    https://developers.google.com/mobile/add?platform=android\n\n2. Enable Google Signin.\n\n3. Get Web Client id mentioned in Oauth 2.0 client ids area here: \n\n    https://console.developers.google.com/apis/credentials\n\n4. Set this Client id before using instance of GooglePlusSignInHelper :\n    \n    ```\n    GooglePlusSignInHelper.setClient(\u003cYOUR CLIENT ID\u003e)\n    ```\n\nNote: If you want google+ information, you need to do following steps:\n  \n  1. Make sure that Google+ Api is enabled in Google Developer Console.\n\n  2. Include this dependency:\n\n```\n  compile 'com.google.android.gms:play-services-plus:9.0.2'\n```\n\n Then, you can access all information through person object in GooglePlusSignInHelper success callback.\n\n\n**For Facebook Login**\n```\ncompile 'com.facebook.android:facebook-android-sdk:4.5.0'\n```\n\n1. Create app in Facebook Developer Console.\n\n2. Follow the steps mentioned here : \n   \n   https://developers.facebook.com/docs/android/getting-started/\n\n\n**For Twitter Login**\n```\ncompile('com.twitter.sdk.android:twitter:1.13.1@aar')\n```\n\nYou need to approve your application for email access by filling form at:\n \n https://support.twitter.com/forms/platform\n\nYou can use following helper classes for integrating any type of login process in your application. \n\n[TwitterConnectHelper](https://github.com/DroidNinja/SocialLoginIntegrationAndroid/blob/master/app/src/main/java/com/binarywalllabs/socialintegration/helpers/TwitterConnectHelper.java)\n\n[GooglePlusSignInHelper](https://github.com/DroidNinja/SocialLoginIntegrationAndroid/blob/master/app/src/main/java/com/binarywalllabs/socialintegration/helpers/GooglePlusSignInHelper.java)\n\n[FbConnectHelper](https://github.com/DroidNinja/SocialLoginIntegrationAndroid/blob/master/app/src/main/java/com/binarywalllabs/socialintegration/helpers/FbConnectHelper.java)\n\nIf there is some problem, feel free to contact me( droidninja15@gmail.com ).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroidninja%2Fsocialloginintegrationandroid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdroidninja%2Fsocialloginintegrationandroid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroidninja%2Fsocialloginintegrationandroid/lists"}