PHPから電報プロトコルでメッセージを送信する例が見つかりません。機能的な例を教えてください。
質問する
95889 次
3 に答える
33
次の関数を使用します。
function sendMessage($chatID, $messaggio, $token) {
echo "sending message to " . $chatID . "\n";
$url = "https://api.telegram.org/bot" . $token . "/sendMessage?chat_id=" . $chatID;
$url = $url . "&text=" . urlencode($messaggio);
$ch = curl_init();
$optArray = array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true
);
curl_setopt_array($ch, $optArray);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
そしてあなたはこのように呼びます
$token = "<insert bot token here>";
$chatid = "<chatID>";
sendMessage($chatid, "Hello World", $token);
于 2015-09-30T20:47:02.050 に答える
5
かなり古い投稿のようですが、答えがないので、誰かの役に立てば幸いです。私が現在開発している次のリポジトリTelegram Bot Client in PHPの例を使用できます。これは、私がメッセージを送信するために使用した方法です。
// initialise variables here
$chat_id = 1231231231;
// path to the picture,
$text = 'your text goes here';
// following ones are optional, so could be set as null
$disable_web_page_preview = null;
$reply_to_message_id = null;
$reply_markup = null;
$data = array(
'chat_id' => urlencode($chat_id),
'text' => urlencode($text),
'disable_web_page_preview' => urlencode($disable_web_page_preview),
'reply_to_message_id' => urlencode($reply_to_message_id),
'reply_markup' => urlencode($reply_markup)
);
$url = https://api.telegram.org/botYOUR_TOKEN_GOES_HERE/sendMessage;
// open connection
$ch = curl_init();
// set the url
curl_setopt($ch, CURLOPT_URL, $url);
// number of POST vars
curl_setopt($ch, CURLOPT_POST, count($data));
// POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
// To display result of curl
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// execute post
$result = curl_exec($ch);
// close connection
curl_close($ch);
于 2015-09-03T18:11:02.657 に答える