phone.ConfirmCall
- class pyrogram.raw.functions.phone.ConfirmCall
Complete phone call E2E encryption key exchange »
- Details:
Layer:
223ID:
2EFE1722
- Parameters:
peer (
InputPhoneCall) – The phone callg_a (
bytes) – Parameter for E2E encryption key exchange »key_fingerprint (
int64-bit) – Key fingerprintprotocol (
PhoneCallProtocol) – Phone call settings
- Returns:
TL Schema
phone.confirmCall#2efe1722
peer:InputPhoneCall
g_a:bytes
key_fingerprint:long
protocol:PhoneCallProtocol
= phone.PhoneCall
Parameter Tree
ConfirmCall
├── peer →
InputPhoneCall│ └──
InputPhoneCall│ ├── id →
long│ └── access_hash →
long├── g_a →
bytes├── key_fingerprint →
long└── protocol →
PhoneCallProtocol├── udp_p2p →
true (optional)├── udp_reflector →
true (optional)├── min_layer →
int├── max_layer →
int└── library_versions →
Vector < string >Example
await app.invoke(
ConfirmCall(
peer=InputPhoneCall(
id=0,
access_hash=0
),
g_a=b"data",
key_fingerprint=0,
protocol=PhoneCallProtocol(
udp_p2p=None,
udp_reflector=None,
min_layer=0,
max_layer=0,
library_versions=["text"]
),
)
)