Luca Bernardi
Luca Bernardi

Reputation: 4199

Integration between Zend Framework and Facebook Connect

I'm developing a web app with zend framework and i'd like to discuss what is the best way to intergrate all the JS and FBML in a ZF project, anyone have some experience. For example, which may be a good solution for have the Facebook istante in every controllers, a front controller plugin?

Upvotes: 2

Views: 9312

Answers (4)

Kdecom
Kdecom

Reputation: 728

If you are using zend framework 2 you can use this tutorial...

http://kdecom.blogspot.co.nz/2012/10/how-to-login-using-facebook-in-zend.html

Upvotes: 0

erickthered
erickthered

Reputation: 901

There's a Zend Framework Library that you can use to access all Facebook Methods at GitHub from your controllers and Models.

https://github.com/erickthered/Facebook-PHP-SDK-for-Zend-Framework

For the views, it's better to add the facebook JS file with the APPID and XFBML parameters to your layout/template so that you can use tags anywhere.

Upvotes: 1

Andresch Serj
Andresch Serj

Reputation: 37348

For all those still landing on this POST: There is a Facebook PHP SDK on github, offered by facebook now. It is quite helpfull and has a good documentation and examples. The other Projects listed above are mostly stopped or in alpha status.

Upvotes: 2

Gordon
Gordon

Reputation: 316999

Since JS and FBML is part of the presentation layer, these would have to go into ViewHelpers. Fetching data from FB via their APIs would go into a service, like Zend_Service_Facebook. There is a proposal for both components in Ready for Review state for some time now:

Upvotes: 1

Related Questions