2010-07-12 64 views

回答

1

是的,你沒有使用正確的方法簽名。這是從我的文件副本複製

public function stream_publish(
    $message, $attachment = null, $action_links = null, $target_id = null, 
    $uid = null) { 

所以你需要調用它像這樣

$facebook->api_client->stream_publish($message, null, null, $target_id); 
3

如果你剛剛起步,你可能會發現Graph APInew PHP SDK更容易。例如:

<?php 

require './facebook.php'; 

$fb = new Facebook(array(
    'appId' => 'YOUR APP ID', 
    'secret' => 'YOUR API SECRET', 
    'cookie' => true, // enable optional cookie support 
)); 
$post = $fb->api("$target_id/feed", 'POST', array('message' => $message)); 

各種參數記錄在底部here

相關問題