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.

In this period we are developing something similar to a social network (where user authenticate themselves and are registered in the platform and communicate with other socialnetworks like Facebook, Twitter, Foursquare etc..).

It's been decided to use the Open Social standard in order to have a standard JSON format of communication between clients and server. These are the current specification in case you are new to it http://opensocial-resources.googlecode.com/svn/spec/1.1/Core-Gadget.xml

Did someone ever used this standard before? Is it a good solution? What could be the advantages of using this standard since the most important social network doesn't currently implement it (exception for MySpace and Linkedin)? Any past experience with this?

share|improve this question
2  
It is so silly and so childish to downvote a question without even explain why – thermz Feb 2 '12 at 21:01

1 Answer

up vote 2 down vote accepted

Actually I've used OpenSocial once, and while it seems a reasonable idea at first, my open social experiment turned out to be a failure

Personally I think the 2 reasons of this failure were:

  • The O.S. standard (as you anticipate in your question) is not used by the most important Social Network.. so, unless you don't have to build your own social network, I think it is pointless to respect standard while you can define a communication protocol which meets your needs.

  • The current libraries that implements O.Social are not completed and sometimes are missing some important features.

We used http://code.google.com/p/opensocial-java-client/ thinking that a lot of things were already implemented (for not falling in NIH). We were wrong! Since there is none who ever developed some library that convert Facebook JSON or twitter JSON in open social standard (at least 4 mounths ago we were unable to find it), and I've developed those by myself. In the end we decided to left this standard and we moved to a solution more adapt to our needs.

share|improve this answer
Thanks, I was hoping to see more opinions about OpenSocial but unfortunately seems it's not an interesting argument (some genius downvoted my question without an explaination) However I'll accept as a best answer (sounds like I've no choice eh?:) ) But before tell me, what is NIH? I'm missing this one.. – thermz Feb 2 '12 at 21:59
Not Invented Here, it's an anti-pattern, re-inventing the wheel is an example of NIH :-) – Abstract Feb 2 '12 at 22:01

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.