Skip to content
This repository was archived by the owner on Jan 13, 2022. It is now read-only.

Commit 5d8cd6a

Browse files
committed
Merge branch 'master' of github.com:dvonlehman/python-instagram into dvonlehman-master
Conflicts: README.md
2 parents 32704a3 + f2f6313 commit 5d8cd6a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Locations: http://instagr.am/developer/endpoints/locations/
183183
``` python
184184
api.location(location_id)
185185
api.location_recent_media(count, max_id, location_id)*
186-
api.location_search(q, count, lat, lng, foursquare_id)
186+
api.location_search(q, count, lat, lng, foursquare_id, foursquare_v2_id)
187187
```
188188

189189
Geographies: http://instagr.am/developer/endpoints/geographies/

instagram/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __init__(self, *args, **kwargs):
130130

131131
location_search = bind_method(
132132
path="/locations/search",
133-
accepts_parameters=SEARCH_ACCEPT_PARAMETERS + ['lat', 'lng', 'foursquare_id'],
133+
accepts_parameters=SEARCH_ACCEPT_PARAMETERS + ['lat', 'lng', 'foursquare_id', 'foursquare_v2_id'],
134134
root_class=Location)
135135

136136
location = bind_method(

0 commit comments

Comments
 (0)