Inherits Function.
Accepts an OAuth authorization request. Returns an HTTP URL to open after successful authorization. May return an empty link if just a toast about successful login has to be shown.
Returns object_ptr<HttpUrl>.
Public Fields | |
| string | url_ |
| URL of the OAuth deep link. | |
| string | match_code_ |
| The matching code chosen by the user. | |
| bool | allow_write_access_ |
| Pass true if the current user allowed the bot that was returned in getOauthLinkInfo, to send them messages. | |
| bool | allow_phone_number_access_ |
| Pass true if the current user allowed the bot that was returned in getOauthLinkInfo, to access their phone number. | |
Public Types | |
| using | ReturnType = object_ptr< httpUrl > |
| Typedef for the type returned by the function. | |
Public Instance Methods | |
| acceptOauthRequest () | |
| acceptOauthRequest (string const &url_, string const &match_code_, bool allow_write_access_, bool allow_phone_number_access_) | |
| void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
| virtual void | store (TlStorerUnsafe &s) const |
| virtual void | store (TlStorerCalcLength &s) const |
| TlObject ()=default | |
| TlObject (const TlObject &)=delete | |
| TlObject & | operator= (const TlObject &)=delete |
| TlObject (TlObject &&)=default | |
| TlObject & | operator= (TlObject &&)=default |
| virtual | ~TlObject ()=default |
Static Public Attributes | |
| static const std::int32_t | ID = -427442108 |
| Identifier uniquely determining a type of the object. | |
Default constructor for a function, which accepts an OAuth authorization request. Returns an HTTP URL to open after successful authorization. May return an empty link if just a toast about successful login has to be shown.
Returns object_ptr<HttpUrl>.
| acceptOauthRequest | ( | string const & | url_, |
| string const & | match_code_, | ||
| bool | allow_write_access_, | ||
| bool | allow_phone_number_access_ | ||
| ) |
Creates a function, which accepts an OAuth authorization request. Returns an HTTP URL to open after successful authorization. May return an empty link if just a toast about successful login has to be shown.
Returns object_ptr<HttpUrl>.
| [in] | url_ | URL of the OAuth deep link. |
| [in] | match_code_ | The matching code chosen by the user. |
| [in] | allow_write_access_ | Pass true if the current user allowed the bot that was returned in getOauthLinkInfo, to send them messages. |
| [in] | allow_phone_number_access_ | Pass true if the current user allowed the bot that was returned in getOauthLinkInfo, to access their phone number. |
|
finalvirtual |