You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
2016-08-08 00:14:48,584 [ pokecli] [ERROR] Error in main loop Request throttled by server... slow down man, restarting at location: (x, y,, 0)
Traceback (most recent call last):
File "pokecli.py", line 166, in main
api.main_loop()
File "/pgoapi/pgoapi.py", line 1175, in main_loop
self.spin_all_forts_visible()
File "/pgoapi/pgoapi.py", line 672, in spin_all_forts_visible
map(lambda x: "via:%f,%f" % (x[0]['latitude'], x[0]['longitude']), destinations[1:]))
File "/pgoapi/pgoapi.py", line 571, in walk_to
self.heartbeat()
File "/pgoapi/pgoapi.py", line 487, in heartbeat
self.use_lucky_egg()
File "/pgoapi/pgoapi.py", line 524, in use_lucky_egg
response = self.call()
File "/pgoapi/pgoapi.py", line 271, in call
response = request.request(self.get_api_endpoint(), self._req_method_list[id(gevent.getcurrent())], player_position)
File "/pgoapi/rpc_api.py", line 141, in request
raise ServerSideRequestThrottlingException("Request throttled by server... slow down man")
ServerSideRequestThrottlingException: Request throttled by server... slow down man
Even giving a sleep of about 1.5 seconds seems to trip the throttling brake.
Disabling the use of Lucky eggs fixed it for me. I'm not sure why. It doesn't look like that portion makes more than one API call.
The text was updated successfully, but these errors were encountered:
My walk speed is currently 5. That's not what's doing it. This is an error code 52 from Niantic's API. From fiddling with it, something about the Lucky Egg method is breaking it. I've stepped away or I'd take a closer look.
Even giving a sleep of about 1.5 seconds seems to trip the throttling brake.
Disabling the use of Lucky eggs fixed it for me. I'm not sure why. It doesn't look like that portion makes more than one API call.
The text was updated successfully, but these errors were encountered: