I'm using requests in Python 2.7 to try to change the description of a previously uploaded image using the API. In accordance with Imgur's API manual I used this:
r = requests.post('https://api.imgur.com/3/image/'+submission['id'], \
headers={'Authorization':'Bearer '+access_token}, \
data={'description':'blahblahblah'}, verify=False)
What I get in return is this:
{u'status': 200, u'data': False, u'success': True}
So, as far as I can see the OAUTH is working just fine, but the API itself is coming back "False" and the description doesn't get changed. I'm not finding any further guidance anywhere regarding this particular endpoint. Any ideas?