Method: account.unregisterDevice
Deletes a device by its token, stops sending PUSH-notifications to it.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
token_type | int | Device token type, see PUSH updates for the possible values. | Optional |
token | string | Device token, see PUSH updates for the possible values. | Optional |
other_uids | Array of long | List of user identifiers of other users currently using the client | Yes |
Return type: Bool
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();
$Bool = $MadelineProto->account->unregisterDevice(token_type: $int, token: 'string', other_uids: [$long, $long], );