sendPhotoコマンドには、として定義された引数が必要です。photo
InputFile or String
API ドキュメントには次のように記載されています。
Photo to send. You can either pass a file_id as String to resend a photo
that is already on the Telegram servers, or upload a new photo using
multipart/form-data.
と
InputFile
This object represents the contents of a file to be uploaded. Must be
posted using multipart/form-data in the usual way that files are
uploaded via the browser.
そこで、この方法を試しました
$bot_url = "https://api.telegram.org/bot<bot_id>/";
$url = $bot_url . "sendPhoto?chat_id=" . $chat_id;
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Content-Type:multipart/form-data"
));
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
"photo" => "@/path/to/image.png",
));
curl_setopt($ch, CURLOPT_INFILESIZE, filesize("/root/dev/fe_new.png"));
$output = curl_exec($ch);
カールが実行されますが、テレグラムは私にこれを返信します:
Error: Bad Request: Wrong persistent file_id specified: contains wrong
characters or have wrong length
@/path...
私もaに置き換えてみましたfile_get_contents
が、この場合、Telegram は空の返信を返します (そしてcurl_error
空です!)。
php + curl を使用してテレグラムに写真を送信する方法は?