I have a facebook Page. I have noticed one problem. When people are posting feeds using the app for my website. The feeds are getting posted on the page but when I check the page using admin's facebook account, I don't receive any notification nor am I able to view these posts on the facebook app page.
This is how I allow others to post the feeds on the facebook App page and their timeline:
$attachment = array(
'access_token' => $fb_access_token,
'message' => $msg,
'link' => $link_url,
'picture' => $pic
);
$facebook->api("/$pageId/feed",'post',$attachment);
$facebook->api("/me/feed",'post',$attachment);
What should I do, so that these posts/feeds are public to everyone?