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 writing a third party JQuery widget. I wanted to have a Social Sharing option for these widgets. These widgets would be installed for different websites, so the sharing urls, content etc would be specific to that website.

I was starting to write my own code for social sharing, but I wanted to know if there are good API's that already take care of this, which could prevent me from writing my own?

Thanks.

share|improve this question

2 Answers

up vote 0 down vote accepted

For strictly "Social Sharing" of Twitter and Facebook, you don't need a back-end. It can all be done client side in a pure jQuery widget.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 23 '12 at 18:27

I use social-share-button. It's implemented in Rails, should be a good start if you're looking to call it in jQUery

https://github.com/huacnlee/social-share-button

share|improve this answer
My backend is not Rails but .NET, would that still work? I am guessing it won't. Any similar alternative for my case? Thanks. – Jayesh Feb 7 '12 at 6:02
Probably won't work, but I re-wrote it for a Python framework :) – JRM Feb 7 '12 at 7:23
You're correct, probably not! I can't think of an off-the-shelf solution for you but I used it's logic and API calls to re-write it into Python. – JRM Feb 7 '12 at 7:24
1  
I'm sorry, but what does .net or rails mean to jQuery? A jQuery plugin is independent on a server back end since jQuery is client side, unless you need to call into some back-end. – DMCS Feb 7 '12 at 16:05

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.