twitter = twython.Twython(oauth_token = oauth_token,
oauth_token_secret = oauth_secret,
app_key = oauth_consumer_key,
app_secret = oauth_consumer_secret)
twitter.getDirectMessages()
TwythonError: 'Forbidden: The request is understood, but it has been refused. An accompanying error message will explain why. This code is used when requests are being denied due to update limits. -- An error occurred processing your request.'
I am using the tokens, secrets, and keys shown on my My Applications page on dev.twitter.com, under the "Details" tab. I'm a little concerned that twython calls it app_key, while twitter calls it a consumer_key. Maybe I've got things confused / backwards.
Other calls, like twitter.getFriendsIDs() succeed.