我使用 php 开发了一个平台,该平台在 facebook 用户墙上发布欢迎帖子。现在我想在帖子中标记用户的三个朋友。
这是我的代码:
try {
$post = $facebook->api("/me/feed","POST",array(
'message' => "",
'name' => "",
'caption' => "",
'description' => "",
'link' => "",
'picture' => "",
));
}
catch (FacebookApiException $e) {
$result = $e->getResult();
}
如何在帖子中自动标记用户的朋友?:-)
PS 我在数组(id,name)中有关于用户朋友的所有信息。