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've been using Facebook's PHP SDK, but it's buggy and they don't seem to have any interest in fixing even basic bugs.

They don't seem to be interested in doing any serious effort in maintaining it, if they only address bugs based on the number of "me too"s.

Is there some alternative? Any other implementation out there that is being actively maintained in a serious way?

share|improve this question
1  
Can't you just subclass the SDK classes and override any functionality you disagree with the implementation of? – Igy Jan 18 at 17:07
1  
I can't see that bug report (presumably you need to log into FB for it) but their blog indicates they are squashing a lot of bugs. I don't think many other organisations can compete with that, and fewer (imo) would try. You could do some searching to see if any third party projects are patching/extending the FB libraries, perhaps? – halfer Jan 18 at 17:08
Could the bug you cite come under the category "duplicate, invalid, or need more information"? – halfer Jan 18 at 17:09
a session is always initialized to keep login state, prepare for this in your code, then your wont have session already started errors. Swearing at developers will not help. – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè Jan 18 at 17:11
1  
Have you thought about forking the project and contributing a fix? github.com/facebook/facebook-php-sdk – cpilko Jan 18 at 17:25
show 3 more comments

closed as not constructive by John Conde, Igy, cpilko, evilone, Stony Jan 18 at 19:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 0 down vote accepted

If you don't want to use the PHP SDK just use curl.

Have fun!

Incidently, you really shouldn't be outputting before initiating the facebook object. What are you trying to do with the SDK that doesn't involve authentication? And if it does involve authentication, you shouldn't output stuff before you authenticate anyway.

share|improve this answer
You really shouldn't be outputting before initiating a session. Hence you are forced to not output before initiatintg the facebook object IF that implies initiating a session. Hehce the facebook object constructor should initiate a session ONLY if it is really needed. And no, it is not always needed. There are things that you can do with a Facebook object that don't involve authentication. – matteo Jan 18 at 21:11
I guess this answer, rephrased, means "no", there is no other good sdk. So I'll mark it as accepted, also because they have closed this question so even if there was a better answer, it could never be posted – matteo Jan 18 at 21:16

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