I am trying to receive realtime updates from Facebook using their Realtime Updates API. I am just trying to get updates of the user's feed. I am using PHP to do all of this. I have it setup and verified, but I cannot access the response when they send it to my callback url. Is there a way to retrieve the json that is being sent to my callback url?
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.
|
|
|
From the docs:
This means you can not access it in PHP using the “normal” way of accessing values in $_POST, because this request is not of the format form/urlencoded – it does not contain name=value pairs, but instead is in itself just a JSON-encoded string. You should be able to read this data using the php://input stream wrapper – for example by simply using a line like
– and then you just use |
|||||||
|