I am trying to post something to users' walls without their login. The error 210 User not visible always occur but I have got the extended permissions: 1.Manage_pages 2.Check-ins 3.offline_access 4.publish_stream 5.read_stream privacy setting “Who can post on your Wall?” also set to “Everyone”. Can facebook do my want or are there any permission missing? The following is my php code for the test and the user_id set to my other facebook id.
<?php
require_once 'phpsdk/src/facebook.php';
'appId' => 'my_app_id',
'secret' => 'my_app_secret',
'cookie' => true,
));
$args = array(
'message' => 'Test',
'link' => 'http://dev.goinggreentoday.com/',
'caption' => 'Welcome to GGT'
);
$post_id = $facebook->api("/user_id/feed", "post", $args);
?>
$facebook = new Facebook(array(is missing). Also make sure that the appaccess_tokenis created successfully otherwise you won't be able to post – ifaour Mar 6 '12 at 12:59