Module tdlight.api

Class TdApi.GetLoginUrl

Enclosing class:
TdApi

public static final class TdApi.GetLoginUrl extends TdApi.Function<TdApi.HttpUrl>
Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button. Returns HttpUrl
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
    Pass true to allow the bot to send messages to the current user.
    long
    Button identifier.
    long
    Chat identifier of the message with the button.
    static final int
     
    long
    Message identifier of the message with the button.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl.
    GetLoginUrl(long chatId, long messageId, long buttonId, boolean allowWriteAccess)
    Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl.
    Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
    int
     
    void
     

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatId

      public long chatId
      Chat identifier of the message with the button.
    • messageId

      public long messageId
      Message identifier of the message with the button.
    • buttonId

      public long buttonId
      Button identifier.
    • allowWriteAccess

      public boolean allowWriteAccess
      Pass true to allow the bot to send messages to the current user.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GetLoginUrl

      public GetLoginUrl()
      Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button. Returns HttpUrl
    • GetLoginUrl

      public GetLoginUrl(long chatId, long messageId, long buttonId, boolean allowWriteAccess)
      Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button. Returns HttpUrl
      Parameters:
      chatId - long Chat identifier of the message with the button.
      messageId - long Message identifier of the message with the button.
      buttonId - long Button identifier.
      allowWriteAccess - boolean Pass true to allow the bot to send messages to the current user.
    • GetLoginUrl

      public GetLoginUrl(DataInput input) throws IOException
      Returns an HTTP URL which can be used to automatically authorize the user on a website after clicking an inline button of type inlineKeyboardButtonTypeLoginUrl. Use the method getLoginUrlInfo to find whether a prior user confirmation is needed. If an error is returned, then the button must be handled as an ordinary URL button. Returns HttpUrl
      Throws:
      IOException
  • Method Details