I am getting the user info through Facebook Graph API using the following codes:
try{
$home = $facebook->api("/$user/home");
$feed = $facebook->api("/$user/feed");
...
What I get:
Array
(
[data] => Array
(
[0] => Array
(
[id] => 1110904xxx
[from] => Array
(
[category] => Computers/internet website
[name] => Test
[id] => 111090485635468
)
[message] => Testing app for Facebook
[picture] => https://fbcdn-photos-a.akamaihd.net/xxx
[link] => http://www.facebook.com/photo.php?xxx
[icon] => https://s-static.ak.facebook.com/rsrc.php/xx
...
And to display correctly:
<?php $msg = $home['data']['0']['message'];
echo $msg; ?>
I will do some questions to avoid creating a lot of topics:
Am I doing right?
It takes A LOT of time to load the info. Is there other way to get user home feed? Can you please show me an example how to geed the user home feed?
There is other tags like status and timeline_photo. How can I make to identify, in code, what the user posted? If was a status update, or a photo update.
Thanks a lot! God bless you all.