そこで、ストーリーのない写真をアップロードして共有することで解決しました。好きなだけ写真を共有できますが、1 つの投稿のままになります。
$postdata = http_build_query(
array(
'access_token' => $token,
'message' => $mes,
'url' => $img,
'no_story' => '1'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = json_decode(file_get_contents('https://graph.facebook.com/'.$album_id.'/photos', false, $context));
$postdata = http_build_query(
array(
'access_token' => $token,
'is_hidden' => 'true'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result2 = file_get_contents('https://graph.facebook.com/'.$result->id, false, $context);
$postdata = http_build_query(
array(
'access_token' => $token,
'link' => 'http://www.facebook.com/photo.php?fbid='.$result->id
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result3 = file_get_contents('https://graph.facebook.com/'.$id.'/feed', false, $context);