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
}
}