このコードを私の.phpファイルに作成しました。ここで私はうまく動作するwebHookを設定しました。電報ボットスイッチのアップデート
$token = "my token";
$website = "https://api.telegram.org/bot" . $token . "/";
$updates = file_get_contents("php://input");
$updates = json_decode($updates, true);
$text = $updates["message"]["text"];
$chatID = $updates["message"]["chat"]["id"];
switch($text){
case "/prova_gratuita":
if(check($chatID)){
sendMessage($chatID, "Are you sure? Demo is available only one time. Write confirm to continue");
switch($text){
case "confirm":
...
break;
}
}
第2のswitch()
は機能しません。どうして?私に何ができる? 私は$text
の値を更新すべきであることを知っていますが、どうすればいいのか分かりません。
なぜ機能するのですか? –
申し訳ありませんが、私は質問を完了していませんでした。 @u_mulder – Riccardo