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.

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?

share|improve this question
Not sure if that’s the cause – but how do you have the default privacy for posts made through your app set up in your app’s settings? – CBroe Sep 5 '12 at 15:20
In the Configuring permission section. I have now changed Default Activity Privacy from None to Public. Also Other settings are as listed: 1)Extended Permissions: publish_stream. 2) Auth Token Parameter: Query String. 3)Authenticated Referrals is enabled. I haven't got it working even after the change. – swati Sep 6 '12 at 17:58
1  
The Authenticated Referrals settings do not affect any login/connect to your app, that you are triggering yourself. And after setting Default Activity Privacy to a new value, I guess you should remove the app from your user settings, and log into it again – otherwise I would not expect it to take effect on user accounts that connected to your app in the past. – CBroe Sep 7 '12 at 7:58
I deleted the app from facebook and got the user to request for the permission again. Even then I am unable to view the posts. – swati Sep 7 '12 at 9:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.