I'm trying to retrieve Facebook page conversation content but the response object does not contain message field but only id, link and updated time.
What is the correct graph API to get content of the message as well?
I tried conversations and me/conversations:
try {
// Returns a `Facebook\FacebookResponse` object
$pm = $fb->get('me/conversations', $pagetoken);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}