试图从trello获取董事会详细信息

时间:2016-08-23 05:08:41

标签: angularjs trello

嗨,我是新手,但我想从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');
        }
    );


 });

1 个答案:

答案 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]只是占位符。

删除这些括号[],你应该没问题。