Method: contacts.resolvePhone
Resolve a phone number to get user info, if their privacy settings allow it.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
phone | string | Phone number in international format, possibly obtained from a phone number deep link. | Optional |
Return type: contacts.ResolvedPeer
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$contacts_ResolvedPeer = $MadelineProto->contacts->resolvePhone(phone: 'string', );