I am looking for php wrapper classes for Facebook, Twitter and Google. I need to use these functionalities:
- Login
- Post to wall/twitter feed
Are there any good classes available that you know of? Or am I better of writing them myself.
Thanks.
|
|
|
You need to signup on phpclasses.org which is totally free. and then you can download these classes. along with documentation. php wrapper class for facebook: http://www.phpclasses.org/package/5200-PHP-Facebook-API-wrapper.html php wrapper class for twitter: http://www.phpclasses.org/package/4075-PHP-Set-and-retrieve-Twitter-user-status.html php wrapper class for google: http://www.phpclasses.org/package/920-PHP-PHP-class-library-to-access-the-Google-API-viaSOAP.html I'm using one in my project. please also give a go to follwoing links, (Step by step guide): http://www.9lessons.info/2011/02/login-with-facebook-and-twitter.html http://www.pakt.com/pakt/?id=5e17b48f5679ab47 Hope this helps. |
|||||||||||
|
|
For Facebook: https://github.com/facebook/php-sdk/ For Twitter: https://dev.twitter.com/docs/twitter-libraries#php For Google, it depends of what web service are you going to use (Calendar, Google+, etc). Basically, their authentification process works using oAuth. You have a lot of information about it on Google. Furthermore, there are some classes for some PHP frameworks as CodeIgniter (if you use one of them). |
|||
|
|
|
Here's a Facebook's SDK for PHP: https://github.com/facebook/php-sdk Here you can find a documentation on how to use the Facebook's API: |
|||
|
|
|
For Facebook you should check their Facebook for Websites manual where you have everything explained, along with some code samples. |
|||
|
|