Answer the question
In order to leave comments, you need to log in
How to send a group of photos (gallery) to Telegram?
Mobile galleries appeared in Telegram and the API was updated. The sendMediaGroup function appeared. Tell me
how to transfer photos there correctly?
Here is the sendphoto function performed as follows
$website="https://api.telegram.org/bot".$botToken;
$chatId = "19__9578"; //Receiver Chat Id
$file_name_with_full_path = realpath($full_path);
$params=array(
'chat_id'=>$chatId,
'photo' => '@'.$file_name_with_full_path,
'caption' => $caption,
);
$ch = curl_init($website . '/sendPhoto');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question