Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Real-time Updates is not posting data

I have set up the real time subscription for facebook, the subscription is done successfully but I am only getting friends updates if friends are added or removed, apart from this I am not getting anything for like "books, checkins, work, education etc...". Facebook is sending the Token to my web server. That is good so far. My server sends back the response to facebook. So far Configuration is done successfully.

Another Issue is - I am not able to see the incomming request in Fiddler. I have tried below to check the incomming request...

if (oSession.host.toLowerCase() == "IP Address:8888") 
    oSession.host = "IP Address:Port Number";
like image 309
Kamalesh Chettiyar Avatar asked Nov 14 '22 09:11

Kamalesh Chettiyar


1 Answers

Sometimes (especially with IE) Fiddler has to be started before you start your debugging session.

like image 169
Vincenzo Avatar answered Dec 18 '22 10:12

Vincenzo