我在laravel 5.6
项目中使用telegram-bot-sdk
API。您可以发送嵌入式图像,如下所示:
$data = [
'chat_id' => $chat_id,
'parse_mode' => 'markdown',
'text' => "[](https://upload.wikimedia.org/logo.svg.png) Some text here.",];
但是当我使用url()
方法创建图像链接时,图像不会发送!
这是我的代码:
$image = url("uploads/image/1.jpg");
Telegram::sendMessage([
'chat_id' => '@channelid',
'parse_mode' => 'markdown',
'text' => "[]".$image."
".$request['Title']."
".$request['Summary']."
[".route('show_article',['id'=>$article->id,'title'=>str_replace(' ', '_',
$article->title)])."](URL)",
]);
} catch (TelegramResponseException $e) {
}
如何完成?怎么了?