2019-08-15 20:25:16 +02:00
---
title: contacts.getLocated
2019-12-27 17:48:04 +01:00
description: Get contacts near you
2019-08-15 20:25:16 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/methods/contacts_getLocated.html
2019-08-15 20:25:16 +02:00
---
2020-06-16 17:50:25 +02:00
# Method: contacts.getLocated
2019-08-15 20:25:16 +02:00
[Back to methods index ](index.md )
2020-06-16 17:50:25 +02:00
2019-12-27 17:48:04 +01:00
Get contacts near you
2019-08-15 20:25:16 +02:00
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
2020-06-16 17:50:25 +02:00
|background|[Bool](../types/Bool.md) | While the geolocation of the current user is public, clients should update it in the background every half-an-hour or so, while setting this flag. < br > Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown. | Optional|
2019-12-27 17:48:04 +01:00
|geo\_point|[InputGeoPoint](../types/InputGeoPoint.md) | Geolocation | Optional|
2020-06-16 17:50:25 +02:00
|self\_expires|[int](../types/int.md) | If set, the geolocation of the current user will be public for the specified number of seconds; pass 0x7fffffff to disable expiry, 0 to make the current geolocation private; if the flag isn't set, no changes will be applied. | Optional|
2019-08-15 20:25:16 +02:00
### Return type: [Updates](../types/Updates.md)
### Can bots use this method: **NO**
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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();
2020-03-06 13:09:28 +01:00
$Updates = $MadelineProto->contacts->getLocated(['background' => Bool, 'geo_point' => InputGeoPoint, 'self_expires' => int, ]);
2019-08-15 20:25:16 +02:00
```
Or, if you're into Lua:
```lua
2020-03-06 13:09:28 +01:00
Updates = contacts.getLocated({background=Bool, geo_point=InputGeoPoint, self_expires=int, })
2019-08-15 20:25:16 +02:00
```
2020-06-16 17:50:25 +02:00
### Errors
| Code | Type | Description |
|------|----------|---------------|
|400|GEO_POINT_INVALID|Invalid geoposition provided|