https://apidocs.imgur.com/#c85c9dfc-7487-4de2-9ecd-66f727cf3139 The parameters I set are config = { 'album': None, 'name': '123', 'title': '123', 'disable_audio': 0, 'description': '124' } data = { 'video': fd.read(), 'type': 'file', } then call self.make_request('POST', 'upload', data, anon) but return 400 How should I upload the video?
https://apidocs.imgur.com/#c85c9dfc-7487-4de2-9ecd-66f727cf3139
The parameters I set are
config = {
'album': None,
'name': '123',
'title': '123',
'disable_audio': 0,
'description': '124'
}
data = {
'video': fd.read(),
'type': 'file',
}
then call
self.make_request('POST', 'upload', data, anon)
but return 400
How should I upload the video?