Update FAQ.md

Fixed typo in SpringApplicationRun
Fixed inconsistency in sendMessage example
Fixed link to my webhook example
This commit is contained in:
Rumen Nikiforov 2020-06-15 11:47:34 +03:00 committed by GitHub
parent 72b239e851
commit 129c6d0c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,16 +243,16 @@ This is just one way, how you can compile it (here with maven). The example belo
Please use ```execute()``` instead. Please use ```execute()``` instead.
Example: Example:
```java ```java
SendMessage sn = new SendMessage(); SendMessage message = new SendMessage();
//add chat id and text //add chat id and text
execute(sn); execute(message);
``` ```
If you extend ```TelegramLongPollingCommandBot```, then use ```AbsSender.execute()``` instead. If you extend ```TelegramLongPollingCommandBot```, then use ```AbsSender.execute()``` instead.
## <a id="example_webhook"></a>Is there any example for WebHook? ## ## <a id="example_webhook"></a>Is there any example for WebHook? ##
Please see the example Bot for https://telegram.me/SnowcrashBot in the [TelegramBotsExample]() repo and also an [example bot for Sping Boot](https://github.com/UnAfraid/SpringTelegramBot) from [UnAfraid](https://github.com/UnAfraid) [here](https://github.com/UnAfraid/SpringTelegramBot/blob/master/src/main/java/com/github/unafraid/spring/bot/TelegramWebhookBot.java) Please see the example Bot for https://telegram.me/SnowcrashBot in the [TelegramBotsExample]() repo and also an [example bot for Sping Boot](https://github.com/UnAfraid/SpringTelegramBot) from [UnAfraid](https://github.com/UnAfraid) [here](https://github.com/UnAfraid/SpringTelegramBot/blob/master/src/main/java/com/github/unafraid/spring/bot/TelegramWebHookBot.java)
@ -268,7 +268,7 @@ public class YourApplicationMainClass {
//Add this line to initialize bots context //Add this line to initialize bots context
ApiContextInitializer.init(); ApiContextInitializer.init();
SpringApplication.run(MusicUploaderApplication.class, args); SpringApplication.run(YourApplicationMainClass.class, args);
} }
} }
``` ```