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 registered for real time updates feature and I verified it as well here's the response which I get when I tried to see whether my subscription was success or not

{
   "data": [
      {
         "object": "user",
         "callback_url": "http://ghl.raiseit-bd.com/callback-page.php",
         "fields": [
            "feed"
         ],
         "active": true
      }
   ]
}

Now when I made a post on my wall, I was expecting that facebook will call my callback url and things will get written to a text file

Here's code for callback-page.php

<?php
$method = $_SERVER['REQUEST_METHOD'];
if ($method == 'GET' && $_GET['hub_mode'] == 'subscribe' && $_GET['hub_verify_token'] == 'Our1stFBApp') {

   echo $_GET['hub_challenge'];
   exit;

}
else
{
  $updates = json_decode(file_get_contents("php://input"), true); 
  $myFile = "testFile.txt";
  $fh = fopen($myFile, 'w') or die("can't open file");
  $stringData = $updates;
  $stringData = $stringData.'Hello';
  fwrite($fh, $stringData);
  fclose($fh);
  print_r($stringData, true));       

}

?>

the file textFile.txt resides inside root directory.

But nothings getting written in that file. How will I know that the real-time update feature is working..any help would be greatly appreciated

share|improve this question
Do your server logs show any hits to that callback URL? – ceejayoz Jul 20 '11 at 18:53
I just have ftp access to the server so dont how to check what you have mentioned. – Sandhurst Jul 20 '11 at 18:57
It's not going to be fun troubleshooting if that's the case. – ceejayoz Jul 20 '11 at 18:59
   
I just checked the subscribtion was successful as the $_GET['hub_challenge'] was written in text file, its just that when I am posting something on my wall, the real time update is not calling my call back url..as the text file is not getting updated at all in this case – Sandhurst Jul 20 '11 at 19:01
Sounds like your app might not have the "read_stream" permission for the user whose wall you're posting on? – Jeff Bowen Jul 20 '11 at 21:43
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.