我不太了解Python语言。有人可以帮助我了解如何在Node.js中使用该图像上传图像吗?我想将文件上传到http://telegra.ph,但是我不知道该怎么做。
此代码是Python Telegraph API wrapper library的示例:
import requests
with open('/Users/python273/Desktop/123345.jpeg', 'rb') as f:
print(
requests.post(
'http://telegra.ph/upload',
files={'file': ('file', f, 'image/jpeg')} # image/gif, image/jpeg, image/jpg, image/png, video/mp4
).json()
)