I am making calls to "trips-for-route" with this:If I make persistent calls every 30 seconds to one route, I haven't seen any issues. However, if I make a large number of calls to multiple route ID's, I will, almost always, get 1 or more of the returns as a 401 status, "Permission Denied". And it's never with the same route.This can happen with 2 routes called to in series, or upwards of 8. I wonder if there is a server-side lockdown on numbers of calls made in a timespan or something? I would dig into the core code myself but I figure someone else has a better understanding than I do.I should note: as a compare/contrast test, I replaced MYKEY with TEST and have NEVER seen any calls to the above url return 401.I am continuing to diagnose my choice of framework to see if it's failing to send the key correctly but if anybody has any knowledge and advice/solutions on this, I would appreciate it.Thanks!--
You received this message because you are subscribed to the Google Groups "OneBusAway API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to onebusaway-ap...@googlegroups.com.
To post to this group, send email to onebusa...@googlegroups.com.
Visit this group at http://groups.google.com/group/onebusaway-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Depending on the architecture of your app, you can always test for a over limit return, and if you get that then sleep and request again, otherwise continue processing data.