forked from rDrama/rDrama
1
0
Fork 0

form encoding

master
fireworks88 2021-09-05 19:17:42 +02:00
parent 4684f822c0
commit 9cb02e284b
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def upload_video(file):
headers = {"Authorization": f"Client-ID {IMGUR_KEY}"}
with open(file_path, 'rb') as f:
try:
r = requests.post('https://api.imgur.com/3/upload', headers=headers, data={"video": f})
r = requests.post('https://api.imgur.com/3/upload', headers=headers, files=[], data={"video": f})
r.raise_for_status()
resp = r.json()['data']