Zend Framework ile Facebook PHP API

1 Cevap php

I am using Zend_Framework's Zend_Controller_Action to build a facebook application. I followed the step by step of this blog for guide : http://blog.madarco.net/91/build-a-facebook-application-with-zend-framework/

public function indexAction() {
   require_once('facebook.php');
   $fb = new Facebook('1234567', '7654321');
   $user_id = $this->fb->require_login();
}

Ama sonuç sayfası boş gitti olmasıdır. Hiçbir şey olmadı.

Ben 'görüş' bölümü için Smarty kullanmak gibi, sonra ben bu aşağıdaki kod çalıştı:

{php}
require_once('facebook.php');
$facebook = new Facebook('1234567','7654321');
$user_id = $facebook->require_login();
{/php}

Ve çalışır.

Ben Facebook API erişmek için Zend Framework kullanmak ne yanlış ne olduğunu merak ediyorum. Bu konuda bana yardımcı olun.

Teşekkürler

1 Cevap

Denemek

public function indexAction() { 
   require_once('facebook.php'); 
   $fb = new Facebook('1234567', '7654321'); 
   $user_id = $fb->require_login(); 
} 

(Veya şeylerin diğer tarafta ...)

public function indexAction() { 
   require_once('facebook.php'); 
   $this->fb = new Facebook('1234567', '7654321'); 
   $user_id = $this->fb->require_login(); 
}