Skip to content

auth.bindTempAuthKey

Layer 225

Constructor ID: 0xcdd42a05
Returns: Bool

Parameters

NameTypeDescription
perm_auth_key_idint64
nonceint64
expires_atint32
encrypted_message[]byte

Example

go
result, err := client.Raw(&tg.BindTempAuthKeyRequest{
    perm_auth_key_id: 0,
    nonce: 0,
    expires_at: 0,
    encrypted_message: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.