如何在asp.net中使用Trello API?

时间:2016-05-05 06:29:44

标签: asp.net api trello

我是使用api的新手。我有一个asp.net表单,我想将表单信息保存为trello卡而不是我的数据库。

1 个答案:

答案 0 :(得分:0)

首先将脚本密钥添加到页面中:

<script type="text/javascript" src="https://api.trello.com/1/client.js?key=yourAppKeyGoesHere"></script>

登录Trello和go to this URL to get your Application key.

此代码可用于向您的应用程序授权用户:

Trello.authorize({
type: "redirect",
name: "YourWebsite.com",
scope: {
    read: true,
    write: true,
    account: true
},
error: function () { onFailedAuthorization(); },
expiration: "never"
});
function onFailedAuthorization() {
    alert("Trello login failed.")
}

然后你可以使用这样的函数在Trello中创建一张卡片:

function CreateCard(cardName, Descr, listID, dueDate)
var newCard = 
{
    name: cardName, desc: Descr, pos: "top", idList: listID, due: dueDate, idMembers: member.id
 };
 Trello.post("/cards", newCard)

可以通过打开Trello列表中的卡来找到idList。将.json添加到URL并在JSON中搜索idList。

Visit the Trello API Docs for more info.