嗨,我是新手,但我想从trello获取卡片细节作为对象我使用角度来获取数据 但我得到的只是无效密钥
码
app.controller("TrelloController", function($http,$scope){
$http({method: 'GET', url:'https://api.trello.com/1/cards/4eea503d91e31d174600008f?fields=name,idList&member_fields=fullName&key=[0a45465a69bdbf89d7b0c64e77257665]&token=[genrated using trello]'})
.then(
function(data,response) {
console.log('result: ', data);
},
function(error) {
console.log('An error occured');
}
);
});
答案 0 :(得分:1)
这是文档所说的:
https://api.trello.com/1/cards/4eea503d91e31d174600008f?fields=name,idList&member_fields=fullName&key=[application_key]&token=[optional_auth_token]
[application_key]
和[optional_auth_token]
只是占位符。
删除这些括号[]
,你应该没问题。