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've setup my server to receive realtime updates from facebook, I've gone through the authentication to get the token etc, registered the callback url... and I've not received a single notice since the authentication GET request.

When I GET graph.facebook.com/APP-ID/subscriptions I receive...

data: [
{
  object: "user",
  callback_url: "REDACTED-VAID-URL",
  fields: [
    "activities",
    "books",
    "checkins",
    "events",
    "feed",
    "friends",
    "interests",
    "likes",
    "location",
    "movies",
    "music",
    "television"
  ],
  active: true
}
]

So as far as I can tell the realtime notification is setup correctly. When I send my own POST to the callback URL the server emails me the POST details every time, but I've never received this after a facebook update, so I'm pretty sure it's just not hitting the URL. I've several users authenticated with the app, we've all tried various things on facebook to try and trigger it (status update, post, like etc). I can pull in their feed etc from the normal rest API.

There must be something I'm just missing here, what else do I need to do to get this to work?!

share|improve this question
1  
Im exactly as far as you have gotten on this one. I have managed to set up a subscription correctly, but I dont recieve any notifications what so ever.. Upvoted! – HappyFlow Jul 30 '12 at 15:58
Any updates on this issue? – HappyFlow Aug 3 '12 at 2:04
1  
Not really an answer, but, in response to Alexander's ping of me about this and related issues: I'm afraid I don't have much to offer. Assuming that your app up on Facebook is properly configured (which it seems to be, since you're getting proper subscription information), my only thought is to make sure that the hits from Facebook are able to get through your network/firewall/etc/ to your server. Are other hits from Facebook showing up? Have you tried POSTing to the callback url from some place outside your immediate network? Sorry I can't be more help... – Jim Miller Aug 3 '12 at 15:49
I've actually been able to test that I can receive the notifications from facebooks servers, I found the option to make test users and I receive the notifications when I post content as a test user. I have received the occasional notification from real users 'liking' pages on facebook, however this has only happened occasionally for some users, not all, and I've never received one for a user posting content. This must be an issue at facebooks end, I've opened a but report but not received any feedback in more than a week. – Malcolm Christie Aug 6 '12 at 8:29

3 Answers

I decided to make a very detailed Facebook Real-Time Updates API Tutorial on how to subscribe to connections and how to handle the incoming notifications from FaceBook.

You can find it here: http://www.codedestination.com/1/post/2013/05/-facebook-real-time-updates-api-tutorial-part-i.html

I'll just leave this here to help others that had your initial problem.

share|improve this answer
Hey AlexanderNorway, I just left a comment in your blog post. (Second part of the article). Can you just let me know once you have gone through? – Kishor Nov 5 '12 at 20:36
@Kishor Hey Kishor! I'll take a look at your question when Im home from work. – HappyFlow Nov 6 '12 at 14:41
Sure buddy.Seems like a bug. I reported it, and I see someone else already reported it aswell. developers.facebook.com/bugs/… – Kishor Nov 6 '12 at 15:02

For those using PHP...

Facebook's realtime POST data won't come in or be recognizable via the normal $_POST array in PHP. You can use the following to get the raw JSON making up the request to your server:

$json = file_get_contents("php://input");

You can then convert this into an array simply by:

$realtime = json_decode($json, true);

It's too bad, however, that the data Facebook gives you in these requests is mostly worthless :-/

share|improve this answer

Even I tried to the same in my POST method.

In my call back URL, I subscribed the RT in GET method and in POST method I wrote this:

$data = file_get_contents("php://input"); $json = json_decode($data);

But every time $json is blank without any data.

Is there any thing I need to do in it.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.