Exemplo n.º 1
0
 public function parseMessage($raw_post_data)
 {
     return Update::fromResponse(self::jsonValidate($raw_post_data, true))->getMessage();
 }
Exemplo n.º 2
0
 /**
  * Webhook handler
  *
  * @return array
  * @throws \TelegramBot\Api\InvalidJsonException
  */
 public function run()
 {
     if ($data = BotApi::jsonValidate($this->getRawBody(), true)) {
         $this->handle([Update::fromResponse($data)]);
     }
 }
Exemplo n.º 3
0
 /**
  * Webhook handler
  *
  * @return array
  * @throws \TelegramBot\Api\InvalidJsonException
  */
 public function run()
 {
     if ($data = BotApi::jsonValidate(file_get_contents('php://input'), true)) {
         $this->handle([Update::fromResponse($data)]);
     }
 }