我试图发布到用户墙我有id和离线令牌存储在数据库中
$result22 = mysql_query("SELECT token FROM usersoffline", $link2);
$num_rows2 = mysql_num_rows($result22);
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM usersoffline")
or die(mysql_error());
echo "<table border='1'>";
echo "<tr> <th>id</th> <th>Toekn</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['uid'];
echo "</td><td>";
echo $row['token'];
echo "</td></tr>";
$target = $row['uid'] ;
$attachment = array(
'access_token' => $row['token'],
'message' => 'Did a Test Post :',
'name' => "Offline posting using stored tokens",
'link' => "url",
'description' => "This post was made using a stored access token",
'picture'=>"",
);
$ret_code=$facebook->api('/'.$target.'/feed', 'POST', $attachment);
}
echo "</table>";
对某些人来说,它不是张贴???
答案 0 :(得分:3)
$target = $row['uid']
之后需要一个分号。
答案 1 :(得分:0)
$facebook = new Facebook(...);
publish_stream
权限try/catch
条款中 catch 错误 - reference offline_access
权限access_token
var $attachment
醇>