I have an Android application that gets the Dropbox photos the user has and then it can send the Dropbox oauth token to a web service so that web service gets the photos and extracts the Metadata and saves to a server database.
Everything was working great, photos were downloaded from Dropbox using several threads at the same time and no rate limiting responses. But now even with one thread, it gets several rate limiting responses. When I mean several it is 90% of the requests. Why is this happening? Did something change?
It makes no sense since in the Android app after using Delta to retrieve the Dropbox status the photos are get using a multithreading library and it never gets rate limiting responses. Is it because of using the token outside the app?