【发布时间】:2019-02-14 11:03:48
【问题描述】:
我想在用户与我的机器人聊天时从用户那里获取用户 ID 和聊天 ID,因为我需要该 ID 来向 Sql 发送查询并注册该用户,但我不知道如何获取用户 ID :(
$data = file_get_contents("php://input");
$update = json_decode($data,true);
$message = $update["message"];
$text = $message["text"];
$cid = $update["message"]["from"]["id"];
$from = $message["from"];
$username = $from["username"];
$nome = $from["first_name"];
$cognome = $form["last_name"];
$cbid = $update["callback_query"]["from"]["id"];
$cbdata = $update["callback_query"]["data"];
$chat_id = $message->chat->id;
$user_id = $message->from->id;
$user = $message->from->username;
此代码用于将 UserID 和 ChatID 发送到聊天室
if($text == "Datos"){
$but = array(array(array("text" => "UserID", "callback_data" => "Info"),),);
inlineKeyboard($but, $cid, "Clicca uno di questi due pulsanti \nper andare su google o su facebook!");
}
if(callback($update)){
if($cbdata == "Info"){
send($cbid, "estos son los datos: $probando $user $userid $probando2");
}
}
【问题讨论】:
-
传入的数据类型是什么?杰森?您是否尝试过 var_dump() 或 print_r() 从源头获取用户信息的数据数组,以查看该属性是否可用?
-
您好,感谢您的回答:var_dump($data);这是信息: string(0) ""
-
因此您没有来自该变量的数据。返回一个空字符串。
-
是的,我没有来自 user_id 的数据,我想知道当他/她向机器人发送消息时,机器人如何从一个人那里获取用户 ID