如何使用PHP中的callback_data或方法解决错误

时间:2019-03-12 20:48:00

标签: php button bots telegram php-telegram-bot

这个想法是要有一些按钮来做某事,我得到了以下代码,并且方法(sendMessage)或callback_data出了点问题,因为在$ message所在的所有行中,我都收到了未定义的索引错误,如果我使用url代替了回调数据,效果很好

我使用一个Webhook

<?php

$botToken = "TOKEN";
$website = "https://api.telegram.org/bot".$botToken;

$update = file_get_contents('php://input');
$update = json_decode($update, TRUE);

$chatId = $update["message"]["chat"]["id"];

$message = $update["message"]["text"];

$response ="testing";
$keyboard = [
    'inline_keyboard' => [
        [
            ['text' => 'This is a test', 'callback_data' => 'testcompleted']
        ]
    ]
];

$parameters = 
    array(
        'chat_id' => $chatId, 
        'text' => $response, 
        'reply_markup' => json_encode($keyboard)
    );

send($parameters);

function send($data)
{
    $url = "https://api.telegram.org/botTOKEN/sendMessage";

    if (!$curld = curl_init()) {
        exit;
    }
    curl_setopt($curld, CURLOPT_POST, true);
    curl_setopt($curld, CURLOPT_POSTFIELDS, $data);
    curl_setopt($curld, CURLOPT_URL, $url);
    curl_setopt($curld, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec($curld);
    curl_close($curld);
    return $output;
}
?>

1 个答案:

答案 0 :(得分:0)

如果请求是回调,则应获取如下数据:

$chatId = $update['callback_query']['message']['chat']['id'];

$message = $update['callback_query']["message"]["text"];

您可以检查isset($update['callback_querry'])并根据结果获取数据。