I am trying to create an application that posts certain information on the user's wall. This message should also be visible in the news feed, but in this part it is not.
I send the following information to the delivery schedule:
<?php array( 'link' => string 'https://www.facebook.com/page' , 'picture' => string 'http://...../picture.png' , 'name' => string 'Name' , 'caption' => string 'caption' , 'description' => string 'info text' , 'message' => string 'message' ) ?>
(All information is filled with useful information, but on this issue I have made it faster to read).
Information goes to the user's wall, but not in the news feed. This also happens on the user side of the story: he can see the post on his wall, but not in any feed. Also when we try with other friends.
I also tried to post a message (without a link and image), but it still does not appear in the general news feed.
Auth permissions are set and accessible (publish_stream), and permissions are also correct when I look at them on the wall. I use the same code as the older application. Maybe this is a setting on the developer's page? Sandbox mode disabled ...
Can someone please help me?
Thanks!
source share