cmon
This commit is contained in:
parent
37adeb235f
commit
572b8f34cf
4 changed files with 21 additions and 14 deletions
|
@ -257,8 +257,9 @@ def settings_profile_post(v):
|
|||
elif file.content_type.startswith('video/'):
|
||||
file.save("video.mp4")
|
||||
with open("video.mp4", 'rb') as f:
|
||||
try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)], timeout=5).json()['data']['link']
|
||||
except: return {"error": "Imgur error"}, 400
|
||||
req = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)], timeout=5).json()['data']
|
||||
try: url = req['link']
|
||||
except: return {"error": req['error']}, 400
|
||||
if url.endswith('.'): url += 'mp4'
|
||||
bio += f"\n\n{url}"
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue