我解決了它使用命中和試用方法。
$attachment = array(
'message' => $d['giftmsg'],
'name' => 'You have recived a gift voucher for a '.$dd['title'].'!' .'',
'link'=>'https://thevoucherlink.com/redirect.php',
'description' => " Please click on the link to claim your gift card. Do it soon! This promotional card is valid for a limited time.. <center> </center> The Voucher Link allows facebook users send gift vouchers from local businesses to their friends",
'picture' => $im,
'actions'=>array('name'=>'Get Voucher','link'=>'https://thevoucherlink.com/redirect.php')
);
try {
$t= $facebook->api('/' . $_POST['friend_id']. '/feed', 'POST', $attachment);
} catch (Exception $exc) {
$err= $exc->getTraceAsString();
}
您可以在帖子上使用這些參數進行相同的文章。
謝謝您的回答。
您不能將開放圖表操作發佈到其他人,而不是您的應用用戶。但是,對我來說,這看起來並不像一個Open Graph操作,而只是發佈到其他人的牆上。鏈接本身可能有參數,這樣應用程序就會知道在鏈接被點擊時誰給了誰。 – CBroe