{"id":19313143,"url":"https://github.com/applikey/socialmanager","last_synced_at":"2026-06-30T13:31:59.673Z","repository":{"id":102551342,"uuid":"115434573","full_name":"AppliKey/SocialManager","owner":"AppliKey","description":":globe_with_meridians: SocialManager is a simple RxJava2 android library to easily implement social login into your android project.","archived":false,"fork":false,"pushed_at":"2018-02-13T14:24:58.000Z","size":348,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-06T02:42:59.091Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.applikeysolutions.com","language":"Java","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/AppliKey.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":"2017-12-26T15:41:49.000Z","updated_at":"2018-02-18T09:39:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"d42249a2-7967-4812-940b-a79633f00e71","html_url":"https://github.com/AppliKey/SocialManager","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AppliKey%2FSocialManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AppliKey%2FSocialManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AppliKey%2FSocialManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AppliKey%2FSocialManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AppliKey","download_url":"https://codeload.github.com/AppliKey/SocialManager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240415214,"owners_count":19797599,"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","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-10T00:37:28.940Z","updated_at":"2025-11-05T23:06:02.024Z","avatar_url":"https://github.com/AppliKey.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/AppliKey/MoonRefresh/blob/master/LICENSE)\n[![Twitter](https://img.shields.io/badge/contact-@Applikey_-blue.svg?style=flat)](https://twitter.com/Applikey_)\n\nMade by [Applikey Solutions](https://applikeysolutions.com)\n\n![Alt text](pictures/social_manager.jpg?raw=true)\n\n# Table of Contents\n1. [Purpose](#purpose)\n2. [Installation](#installation)\n3. [Usage](#usage)\n   * [Configure app level gradle file](#configure-app-level-gradle-file)\n   * [Configure your Application class](#configure-your-application-class)\n   * [Networks Connections](#networks-connections)\n4. [Demo](#demo)\n5. [Release Notes](#release-notes)\n6. [Contact Us](#contact-us)\n7. [License](#license)\n\n\n# Purpose\n\nA reactive android library to easily implement social login (Facebook, Google, Twitter, Instagram) into your android project.\n\n# Installation\n\n```groovy\nimplementation 'com.github.applikey:socialmanager:1.0.0'\n```\n\n# Usage\n\n### Configure app level gradle file:\n```groovy\nandroid.buildTypes.debug.manifestPlaceholders = [\n        twitterConsumerKey   : \"Set your twitter application consumer key\",\n        twitterConsumerSecret: \"Set your twitter application secret key\",\n        googleWebClientId    : \"Set your google application web client id\",\n        facebookAppId        : \"Set your facebook application id\",\n        instagramClientId    : \"Set your instagram application client id\",\n        instagramClientSecret: \"Set your instagram application client secret key id\",\n        instagramRedirectUri : \"Set your instagram application redirect uri\"\n]\n```\nIf you don't need some social networks, leave fields empty, but don't remove.\n\n### Configure your Application class:\n```java\npublic class MyApp extends Application {\n    @Override public void onCreate() {\n        super.onCreate();\n        Authentication.init(this);\n    }\n}\n```\n\n### Networks Connections\n\nTwitter connection:\n```java\n    void connectTwitter() {\n        Authentication\n                .getInstance()\n                .connectTwitter()\n                .login()\n                .subscribe(networklUser -\u003e {}),\n                        throwable -\u003e {});\n    }\n```\nGoogle connection:\n```java\n    void connectGoogle() {\n        List\u003cString\u003e scopes = Arrays.asList(\n                \"https://www.googleapis.com/auth/youtube\",\n                \"https://www.googleapis.com/auth/youtube.upload\"\n        );\n\n        Authentication\n                .getInstance()\n                .connectGoogle(scopes)\n                .login()\n                ..subscribe(networklUser -\u003e {}),\n                        throwable -\u003e {});\n    }\n```\nFacebook connection:\n```java\n    void connectFacebook() {\n        List\u003cString\u003e scopes = Arrays.asList(\"user_birthday\", \"user_friends\");\n        Authentication\n                .getInstance()\n                .connectFacebook(scopes)\n                .login()\n                .subscribe(networklUser -\u003e {}),\n                        throwable -\u003e {});\n\n    }\n```\nInstagram connection:\n```java\n    void connectInstagram() {\n        List\u003cString\u003e scopes = Arrays.asList(\"follower_list\", \"likes\");\n        Authentication\n                .getInstance()\n                .connectInstagram(scopes)\n                .login()\n                .subscribe(networklUser -\u003e {}),\n                        throwable -\u003e {});\n    }\n```\n# Release Notes\n\nVersion 1.0.0\n\n- Release version.\n\n# Contact Us\n\nYou can always contact us via github@applikey.biz We are open for any inquiries regarding our libraries and controls, new open-source projects and other ways of contributing to the community. If you have used our component in your project we would be extremely happy if you write us your feedback and let us know about it!\n\n# License\n\n    MIT License\n\n    Copyright (c) 2018 Applikey Solutions\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplikey%2Fsocialmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapplikey%2Fsocialmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplikey%2Fsocialmanager/lists"}