Last active
June 15, 2022 09:24
-
-
Save honghuynhit/450c24c9dadc35c186bca2f02ef705a1 to your computer and use it in GitHub Desktop.
[FASTAPI]: Post File qua lại giữa các api trong
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Request: | |
thumb=Form(..., description='thumb'), | |
# Nhận request và chỉnh sửa lại file | |
up = {'thumb': (str(thumb.filename), await thumb.read())} | |
# Gửi qua api, | |
response = requests.post('url-endpoint', | |
data=data, files=up | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment