Skip to main content

contacts.getLocated

Get users and geochats near you, see here » for more info.

func (c *Client) ContactsGetLocated(ctx context.Context, request *ContactsGetLocatedRequest) (UpdatesClass, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.ContactsGetLocated(ctx, &tg.ContactsGetLocatedRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // UpdatesClass
return nil
})

Parameters

NameTypeRequiredDescription
BackgroundboolWhile 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. Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown.
GeoPointInputGeoPointClassyesGeolocation
SelfExpiresintIf 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.

Returns

UpdatesClass

Possible errors

CodeTypeDescription
406BUSINESS_ADDRESS_ACTIVEThe user is currently advertising a Business Location, the location may only be changed (or removed) using account.updateBusinessLocation ». .
400GEO_POINT_INVALIDInvalid geoposition provided.
406USERPIC_PRIVACY_REQUIREDYou need to disable privacy settings for your profile picture in order to make your geolocation public.
406USERPIC_UPLOAD_REQUIREDYou must have a profile picture to publish your geolocation.

References