Wrote a PHP handler that creates posts in the group. But the question was how to post a picture? I tried to add a link to the attachments , but displays a link to the picture, but does not add the picture itself (which is located on this link). How can this be fixed?
if( isset( $_POST['send'] ) ){ $day = $_POST['day']; $month = $_POST['month']; $year = $_POST['year']; $hour = $_POST['hour']; $minute = $_POST['minute']; $photo = $_POST['link']; //тут хранится ссылка на картинку $senddate = $year."-".$month."-".$day." ".$hour.":".$minute.":00"; $date = strtotime($senddate); $url = 'https://api.vk.com/method/wall.post?owner_id=-137337424&attachments='.$photo.'&publish_date='.$date.'&v=5.63&access_token=мойтокен'; echo '<iframe src="'.$url.'" width="400px" height="50px"></iframe>'; echo "Выполнено";