Trello如何添加附件
Trello how to add attachments
我正在尝试向预先创建的 Trello 卡片添加附件
我知道如何创建卡片,但到目前为止我无法找到如何在不提供 ID 的情况下添加附件(因为尚未创建卡片)
如有需要:https://developers.trello.com/advanced-reference/card
我正在使用它来创建卡片:
https://api.trello.com/1/cards?key=<myKey>&token=<myToken>&name=My+new+card+name&desc=My+new+card+description&idList=<myIdList>
好的,我找到答案了!
创建卡片->获取过程中的卡片ID->添加附件!
我用过 Python 3.5,它是这样工作的:
#python 3.5.2
import requests
params = (
('key', 'yourkey'),
('token', 'yourtoken'),
)
files = {
'file': ('C:\Users\mcronje\Pictures\Picture.png', open('C:\Users\Pictures\Picture.png', 'rb')),
}
response = requests.post('https://api.trello.com/1/cards/ {cardidnumber}/attachments', params=params, files=files)
print(response.text)
我正在尝试向预先创建的 Trello 卡片添加附件
我知道如何创建卡片,但到目前为止我无法找到如何在不提供 ID 的情况下添加附件(因为尚未创建卡片)
如有需要:https://developers.trello.com/advanced-reference/card
我正在使用它来创建卡片:
https://api.trello.com/1/cards?key=<myKey>&token=<myToken>&name=My+new+card+name&desc=My+new+card+description&idList=<myIdList>
好的,我找到答案了!
创建卡片->获取过程中的卡片ID->添加附件!
我用过 Python 3.5,它是这样工作的:
#python 3.5.2
import requests
params = (
('key', 'yourkey'),
('token', 'yourtoken'),
)
files = {
'file': ('C:\Users\mcronje\Pictures\Picture.png', open('C:\Users\Pictures\Picture.png', 'rb')),
}
response = requests.post('https://api.trello.com/1/cards/ {cardidnumber}/attachments', params=params, files=files)
print(response.text)