Android Social Networks is library which makes working with social networks easier. If you sometime tried to work with social networks on android you should remember that this is a hell. You should read documentation for every social network, download SDK or use some libraries for OAuth and make http calls by yourself. This library should makes your life easier, it contains common interface for Twitter, LinkedIn, Facebook and Google Plus, just build SocialNetworkManager and configure your AndroidManiferst and you can login users, or post messages or photos or add / remove friends. Library is still in development so more features will be added soon
- Login (Twitter, LinkedIn, Facebook, Google Plus)
- Get person info (Twitter, LinkedIn, Facebook, Google Plus)
- Post message (Twitter, LinkedIn, Facebook)
- Post photo (Twitter, LinekdIn)
- Check is user in your friends list (Twitter, LinkedIn)
- Add to friends (Twitter, LinkedIn)
- Remove from friends (Twitter)
First you need to initialize mSocialNetworkManager. Build it with SocialNetworkManager.Builder and add to fragment manager.
mSocialNetworkManager = (SocialNetworkManager) getFragmentManager().findFragmentByTag(SOCIAL_NETWORK_TAG);
if (mSocialNetworkManager == null) {
mSocialNetworkManager = SocialNetworkManager.Builder.from(getActivity())
.twitter("3IYEDC9Pq5SIjzENhgorlpera", "fawjHMhyzhrfcFKZVB6d5YfiWbWGmgX7vPfazi61xZY9pdD1aE")
.linkedIn("77ieoe71pon7wq", "pp5E8hkdY9voGC9y", "r_basicprofile+rw_nus+r_network+w_messages")
.facebook()
.googlePlus()
.build();
getFragmentManager().beginTransaction().add(mSocialNetworkManager, SOCIAL_NETWORK_TAG).commit();
}
Then you need to implement SocialNetworkManager.OnInitializationCompleteListener callback and pass it to your SocialNetworkManager instance.
public class MainFragment extends Fragment implements SocialNetworkManager.OnInitializationCompleteListener
...
@Override
public void onCreate(Bundle savedInstanceState) {
...
mSocialNetworkManager.setOnInitializationCompleteListener(this);
}
Add listeners for events you will use. Don't forget to null them in onDetach to avoid memory leaks.
@Override
public void onSocialNetworkManagerInitialized() {
for (SocialNetwork socialNetwork : mSocialNetworkManager.getInitializedSocialNetworks()) {
socialNetwork.setOnLoginCompleteListener(this);
socialNetwork.setOnRequestSocialPersonListener(this);
}
}
...
@Override
public void onDetach() {
super.onDetach();
mSocialNetworkManager.setOnInitializationCompleteListener(null);
for (SocialNetwork socialNetwork : mSocialNetworkManager.getInitializedSocialNetworks()) {
socialNetwork.setOnLoginCompleteListener(null);
socialNetwork.setOnRequestSocialPersonListener(null);
}
}
Now you can execute requests, results you will receive in your listeners.
mSocialNetworkManager.getTwitterSocialNetwork().requestLogin();
mSocialNetworkManager.getSocialNetwork(TwitterSocialNetwork.ID).requestPerson();
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
compile('com.github.androidsocialnetworks:library:0.1.8-SNAPSHOT@aar') {
transitive = true
}
- support-v4
- Twitter4j
- Google Play Services
- Facebook SDK
- linkedin-j-android
- signpost-core
- signpost-commonshttp4
Android Social Networks is made available under the MIT license:
The MIT License (MIT) Copyright (c) 2014 Anton Krasov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.