Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an android application and I want somethings to share in facebook,twitter,google+,etc So I want to know if there is any common library available to share in all social media rather than implementing individual sdk's Thank you

share|improve this question

4 Answers

up vote 4 down vote accepted

There is a free common library available. I used to integrate facebook , twitter , linkedin , myspace in my application.

The project also says they are looking to add more social clients soon.

http://socialauth.in/

share|improve this answer
really nice I will try this I think this should do the work – Hari Nov 16 '12 at 12:39

I dont think there is a common SDK for all together. But i recommend you to use individual SDks, because they keep on updating their SDKs.

share|improve this answer
okay thank you for helping – Hari Nov 16 '12 at 5:05

It is always preferable to use Intent with ACTION_SEND.

/* Example of sharing an image */
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
Uri uri = Uri.fromFile(file);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.putExtra(Intent.EXTRA_TEXT, "Check out my photo");
startActivity(shareIntent);
share|improve this answer
thank you for helping – Hari Nov 16 '12 at 5:47

There isn't a such a library (yet) that allows you to share on multiple social networks.

The best possible solution is to integrate individual SDK's and then allow the user to choose which platform they want to post on. Something like the TweetDeck App.

AFAIK, Google+ does not have an API / SDK with write features. They still, I believe, are in a Read Only state.

share|improve this answer
yes Google+ is read only – Hari Nov 16 '12 at 5:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.