Integrating FaceBook, Twitter, Social networks in

2019-01-20 23:08发布

Integrating Multiple Social networks into Android with a single common Framework or API or JAR

For iPhone we have ShareKit, which integrates multiple sharing options in one framework. http://www.getsharekit.com/

For android i have no idea if something similar exists. I am building an application which shares information to social networks, like some posts and tweets. Its a simple game, where gamers publish updates about their achievements and levels.. etc.. I used Facebook and twitter APIs but they take up lots of memory and difficult to manage. Also i cannot handle them efficiently. Any help on how to integrate them would be appreciated.

I would like to have a few suggestions on this..

Another Example seems PinkelStar

http://www.pinkelstar.com/ (Not maintained anymore)

Thanks

12条回答
迷人小祖宗
2楼-- · 2019-01-20 23:44

What about scribe?

I've been testing it with twitter successfully. It's pretty easy.

查看更多
男人必须洒脱
4楼-- · 2019-01-20 23:49

Maybe using ASNE library make your life easier? Just add dependency to your project:

dependencies {
...
    compile 'com.github.asne:asne-facebook:0.2.0'
    compile 'com.github.asne:asne-twitter:0.2.0'
    compile 'com.github.asne:asne-googleplus:0.2.0'
    compile 'com.github.asne:asne-linkedin:0.2.0'
...
}

setup and request almost anything!

查看更多
贼婆χ
5楼-- · 2019-01-20 23:49

This is a pretty old question but I will write a very answer to this. You can easily do this using the CloudRail API. Supports integration of Facebook, Twitter, G+, Instagram, LinkedIn, Yahoo, Windows Live, GitHub and Slack.. Just have to create an object of each in the same way and get an app key and app secret key. For example

Facebook f = new Facebook(this, appKey, appSecret);
f.post(…)
Twitter t = new Twitter(this, appKey, appSecret);
t.post(…)

and so on. HERE is a full blog post that shows you how to achieve this. Hope that helps DISCLAIMER: I wrote that post

查看更多
Fickle 薄情
6楼-- · 2019-01-20 23:49

If you are making a game, then I recommend Scoreloop's Social API They've been pretty good with keeping up with the API and being a one stop shop for simplifying some game related elements.

查看更多
神经病院院长
7楼-- · 2019-01-20 23:49

If you are looking at social media integration in an Android game, I'd recommend you take a look at Skiller SDK as well. It provides good support for leading social networks and the SDK seems real easy to use. For reference, look at their TicTacToe sample

查看更多
登录 后发表回答