2.2 KiB
2.2 KiB
title | description | image | redirect_from |
---|---|---|---|
account.unregisterDevice | Deletes a device by its token, stops sending PUSH-notifications to it. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/account_unregisterDevice.html |
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. Possible values: 1 - APNS (device token for apple push)2 - FCM (firebase token for google firebase)3 - MPNS (channel URI for microsoft push)4 - Simple push (endpoint for firefox's simple push API)5 - Ubuntu phone (token for ubuntu push)6 - Blackberry (token for blackberry push)7 - Unused8 - WNS (windows push)9 - APNS VoIP (token for apple push VoIP)10 - Web push (web push, see below)11 - MPNS VoIP (token for microsoft push VoIP)12 - Tizen (token for tizen push)For 10 web push, the token must be a JSON-encoded object containing the keys described in PUSH updates |
Yes |
token | string | Device token | Yes |
other_uids | Array of int | Other UIDs | 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' => [int, int], ]);
Or, if you're into Lua:
Bool = account.unregisterDevice({token_type=int, token='string', other_uids={int}, })
Errors
Code | Type | Description |
---|---|---|
400 | TOKEN_INVALID | The provided token is invalid |