Method: account.updateBusinessLocation
Businesses » may advertise their location using this method, see here » for more info.
To remove business location information invoke the method without setting any of the parameters.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
geo_point | InputGeoPoint | Optional, contains a set of geographical coordinates. | Optional |
address | string | Mandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars). | Optional |
Return type: Bool
Can userbots use this method: YES
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->updateBusinessLocation(geo_point: $InputGeoPoint, address: 'string', );