I like to post data from application to many users who have granted the application.
I tried in following steps.
step:1 first get access_token as an application by following.
https://graph.facebook.com/oauth/access_token?
client_id=XXXXXX&client_secret=YYYYYYYYYYYY&grant_type=client_credentials
step2:
$facebook = new Facebook("KEY","SECRETKEY");
$param = array(
'method' => 'stream.publish',
'message' => 'aaaaaaaaaaaaaaa',
'target_id' => 'ZZZZZZZZZZZZZZ',
'attachment' => $attachment,
'access_token' => GENERETED ACCESS TOKEN FROM STEP1 ,
'callback' => ''
);
$fqlResult2 = $facebook->api("/IIIIIIIIIIIIIIIII/feed/" , "post", $param);
but the application cant post to the targeted users wall how can i achieve?
The error was "User not visible".
but works for the code given below:[retrieve user info]
$fql = "select name, hometown_location, sex, pic_square, email from user where
uid=1000000001";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'access_token' =>GENERETED ACCESS TOKEN FROM STEP1 ,
'callback' => ''
);
$fqlResult2 = $facebook->api($param);
so how can application can post the specified users wall/newsfeed?the above code was wrong?
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.
|
|
|||||
|
|
The error "user not visible" means the user's privacy settings prevent you from posting on their wall. Also, you're using the old REST API which has been deprecated. You should be using the Graph API |
|||
|
|