Link Search Menu Expand Document

Method: contacts.resolvePhone

Back to methods index

Resolve a phone number to get user info, if their privacy settings allow it.

Parameters:

NameTypeDescriptionRequired
phonestringPhone 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', );