Skip to content

messages.requestAppWebView

Layer 225

Constructor ID: 0x53618bce
Returns: WebViewResult

Parameters

NameTypeDescription
write_allowedbool (flags.0, optional)
compactbool (flags.7, optional)
fullscreenbool (flags.8, optional)
peerInputPeer
appInputBotApp
start_paramstring (flags.1, optional)
theme_paramsDataJSON (flags.2, optional)
platformstring

Example

go
result, err := client.Raw(&tg.RequestAppWebViewRequest{
    write_allowed: false,
    compact: false,
    fullscreen: false,
    peer: nil, // InputPeer
    app: nil, // InputBotApp
    start_param: "",
    theme_params: nil, // DataJSON
    platform: "",
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.