Skip to content

Commit 006c404

Browse files
committed
remove require_auth=True from photos/search api
1 parent a625e6d commit 006c404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fivehundredpx/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self,auth_handler=None,host=None,secure=True,version=None,retry_cou
1818
#### Photo API
1919
# https://github.com/500px/api-documentation/tree/master/endpoints/photo
2020
photos = bind_api(path='/photos')
21-
photos_search = bind_api(path='/photos/search', require_auth=True)
21+
photos_search = bind_api(path='/photos/search')
2222
photos_id = bind_api(path='/photos/{id}', allowed_params=['id'])
2323
photos_post = bind_api(path='/photos', method='POST', require_auth=True)
2424
photos_update = bind_api(path='/photos/{id}', method='PUT', require_auth=True, as_query=False)

0 commit comments

Comments
 (0)