使用Node.js将图像上传到telegra.ph

时间:2018-12-11 17:49:52

标签: python node.js telegram

我不太了解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()
    )

0 个答案:

没有答案