facebook - Some pictures not showing in application feed -


i'm in process of taking feed group & displaying on web page. when logged in facebook, group time line shows images have posted. when put 1396648167216137/feed graph api explorer, see "picture" data associated posts. have used following php code pull group feed website:

// create our application instance $facebook = new facebook(array(   'appid' => '454419257989387',   'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',  ));  // application access token $t = $facebook->getaccesstoken();  // group id 10mostinvolved $gid = "1396648167216137";  // go fetch feed $feed = $facebook->api("$gid/feed?access_token=$t"); 

the pictures posts don't show & dump of json array reveals "picture" data isn't being provided in $feed. odd thing 2 other members of group have posts images, "picture" data being provided in $feed.

that appears suggest setting on account. having looked @ obvious settings -> privacy -> can see stuff? set public, @ loss explain why pictures don't show when others do.

any pointers appreciated.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -