Problem ise Facebook sorguyu yürüttükten

0 Cevap php

Ben ilk defa bir FQL çalıştırmak çalışıyorum. Bu benim index.php dosyasına dahil ettik kodu:

<?php $query="SELECT message FROM status WHERE uid = 544337058";echo $query;   ?>
      <?php
      include_once ('facebook.php');
      $api_key = 'XXXXXXXXXXXXXXX';
      $secret  = 'XXXXXXXXXXXXXXXXX';
      global $facebook;
      $facebook = new Facebook($api_key, $secret);
      $result = $facebook->api_client->fql_query($query);
      ?>
      <?php echo $result?>

Ben farklı bir sekmeden Facebook'a giriş yapmış ve sadece benim kendi durum mesajı okumaya çalışıyorum var. Ancak ben şu hatayı alıyorum:

SELECT message FROM status WHERE uid = @@@@@@
    Fatal error: Uncaught exception 'FacebookRestClientException' with message 'Requires 
user session' in /users/home/aafhe7vh/web/public/facebookapi_php5_restlib.php:3065 Stack 
trace: #0 /users/home/aafhe7vh/web/public/facebookapi_php5_restlib.php(1025): 
FacebookRestClient->call_method('facebook.fql.qu...', Array) #1 /users/home/aafhe7vh
/web/public/status.php(46): FacebookRestClient->fql_query('SELECT message ...') #2 {main} 
thrown in /users/home/aafhe7vh/web/public/facebookapi_php5_restlib.php on line 3065

Nasıl olsun ve bu sorguya bir kullanıcının oturumunu sağlıyoruz.

Teşekkürler.

0 Cevap