Class SetWebhook
- java.lang.Object
-
- org.telegram.telegrambots.meta.api.methods.PartialBotApiMethod<T>
-
- org.telegram.telegrambots.meta.api.methods.BotApiMethod<Boolean>
-
- org.telegram.telegrambots.meta.api.methods.updates.SetWebhook
-
- All Implemented Interfaces:
Validable
public class SetWebhook extends BotApiMethod<Boolean>
- Version:
- 1.0 Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. 20 of June of 2015
- Author:
- Ruben Bermudez
-
-
Field Summary
Fields Modifier and Type Field Description static StringALLOWEDUPDATES_FIELDstatic StringCERTIFICATE_FIELDstatic StringDROPPENDINGUPDATES_FIELDstatic StringIPADDRESS_FIELDstatic StringMAXCONNECTIONS_FIELDstatic StringPATHstatic StringURL_FIELD-
Fields inherited from class org.telegram.telegrambots.meta.api.methods.BotApiMethod
METHOD_FIELD
-
Fields inherited from class org.telegram.telegrambots.meta.api.methods.PartialBotApiMethod
OBJECT_MAPPER
-
-
Constructor Summary
Constructors Constructor Description SetWebhook()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleandeserializeResponse(String answer)Deserialize a json answer to the response type to a methodStringgetMethod()Getter for method path (that is the same as method name)voidvalidate()Validates that mandatory fields are filled and optional objects
-
-
-
Field Detail
-
PATH
public static final String PATH
- See Also:
- Constant Field Values
-
URL_FIELD
public static final String URL_FIELD
- See Also:
- Constant Field Values
-
CERTIFICATE_FIELD
public static final String CERTIFICATE_FIELD
- See Also:
- Constant Field Values
-
MAXCONNECTIONS_FIELD
public static final String MAXCONNECTIONS_FIELD
- See Also:
- Constant Field Values
-
ALLOWEDUPDATES_FIELD
public static final String ALLOWEDUPDATES_FIELD
- See Also:
- Constant Field Values
-
IPADDRESS_FIELD
public static final String IPADDRESS_FIELD
- See Also:
- Constant Field Values
-
DROPPENDINGUPDATES_FIELD
public static final String DROPPENDINGUPDATES_FIELD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMethod
public String getMethod()
Description copied from class:BotApiMethodGetter for method path (that is the same as method name)- Specified by:
getMethodin classBotApiMethod<Boolean>- Returns:
- Method path
-
deserializeResponse
public Boolean deserializeResponse(String answer) throws TelegramApiRequestException
Description copied from class:PartialBotApiMethodDeserialize a json answer to the response type to a method- Specified by:
deserializeResponsein classPartialBotApiMethod<Boolean>- Parameters:
answer- Json answer received- Returns:
- Answer for the method
- Throws:
TelegramApiRequestException
-
validate
public void validate() throws TelegramApiValidationExceptionDescription copied from interface:ValidableValidates that mandatory fields are filled and optional objects- Throws:
TelegramApiValidationException- If any mandatory field is empty
-
-