MadelineProtoDocs/docs/API_docs/methods/contacts.resolvePhone.md
2024-05-01 14:53:46 +02:00

1.3 KiB

title description grand_parent parent image redirect_from
contacts.resolvePhone Resolve a phone number to get user info, if their privacy settings allow it. Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/contacts_resolvePhone.html

Method: contacts.resolvePhone

Back to methods index

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