“PHP Wyślij wiadomość telegramową do użytkownika” Kod odpowiedzi

PHP Wyślij wiadomość telegramową do użytkownika

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;
}
Annoying Albatross

PHP Wyślij wiadomość telegramową do użytkownika

$token = "<insert bot token here>";
$chatid = "<chatID>";
sendMessage($chatid, "Hello World", $token);
Annoying Albatross

Odpowiedzi podobne do “PHP Wyślij wiadomość telegramową do użytkownika”

Pytania podobne do “PHP Wyślij wiadomość telegramową do użytkownika”

Więcej pokrewnych odpowiedzi na “PHP Wyślij wiadomość telegramową do użytkownika” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu