我正在尝试使用php sdk(graph api)与群组分享公开照片
$ret_obj = $facebook->api("/$group_id/feed", 'POST', array(
'link' => $link,
'message' => $message,
)
);
其中$ link是我要以此格式分享的照片的链接:https://www.facebook.com/photo.php?fbid=10151273906386749&set=a.53081056748.66806.6815841748&type=1&theater
它没有用,所以我也在Graph Api Explorer中尝试了这个, 结果我得到:
{
"error": {
"message": "(#100) property values must be strings or objects with a 'text' and a 'href' attribute",
"type": "OAuthException",
"code": 100
}
}