We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f3867 commit a7a5512Copy full SHA for a7a5512
Telegram.php
@@ -604,6 +604,18 @@ public function answerCallbackQuery(array $content): array
604
return $this->endpoint('answerCallbackQuery', $content);
605
}
606
607
+ /**
608
+ * See <a href="https://core.telegram.org/bots/api#answerwebappquery</a> for the input values.
609
+ *
610
+ * @param $content array the request parameters as array
611
612
+ * @return array the JSON Telegram's reply.
613
+ */
614
+ public function answerWebAppQuery(array $content): array
615
+ {
616
+ return $this->endpoint('answerWebAppQuery', $content);
617
+ }
618
+
619
/**
620
* See <a href="https://core.telegram.org/bots/api#setmycommands">setMyCommands</a> for the input values.
621
*
0 commit comments