2.1 KiB
2.1 KiB
title | description | image |
---|---|---|
account.registerDevice | Register device for push notifications | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: account.registerDevice
Register device for push notifications
Parameters:
Name | Type | Description | Required |
---|---|---|---|
token_type | int | Device token type. Possible values: 1 - APNS, 2 - GCM, 3 - MPNS, 4 - Simple Push, 5 - Ubuntu Phone, 6 - Blackberry, and other, see source code of official apps for more info | Yes |
token | string | Device token type. Possible values: 1 - APNS, 2 - GCM, 3 - MPNS, 4 - Simple Push, 5 - Ubuntu Phone,6 - Blackberry, and other, see source code of official apps for more info | Yes |
device_model | string | Device model | Yes |
system_version | string | System version | Yes |
app_version | string | App version | Yes |
app_sandbox | Bool | Should the app run in a sandbox? | Yes |
lang_code | string | Language code | Yes |
Return type: Bool
Can bots use this method: NO
MadelineProto Example:
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->account->registerDevice(['token_type' => int, 'token' => 'string', 'device_model' => 'string', 'system_version' => 'string', 'app_version' => 'string', 'app_sandbox' => Bool, 'lang_code' => 'string', ]);
Or, if you're into Lua:
Bool = account.registerDevice({token_type=int, token='string', device_model='string', system_version='string', app_version='string', app_sandbox=Bool, lang_code='string', })
Errors this method can return:
Error | Description |
---|---|
TOKEN_INVALID | The provided token is invalid |