Answer the question
In order to leave comments, you need to log in
How to upload a picture in telegram from a link without a link?
Hello. I publish posts on the channel in this way.
$ch = curl_init();
curl_setopt_array(
$ch,
array(
CURLOPT_URL => "https://api.telegram.org/bot" . TELEGRAM_TOKEN . "/sendMessage",
CURLOPT_POST => TRUE,
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_TIMEOUT => 10,
CURLOPT_POSTFIELDS => array(
"chat_id" => TELEGRAM_CHATID,
"text" => $msg,
"parse_mode" => "HTML"
),
)
);
Answer the question
In order to leave comments, you need to log in
Make a hidden link at the beginning of the post
$msg = "<a href=\"ссылка на картинку\">\u{00a0}</a>\n" . $msg;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question