如何从 Trello API 检索令牌

How can I retrieve a token from Trello API

我正在构建一个应用程序,要求用户授权该应用程序使用他的 Trello 帐户。

首先,我使用我的开发人员密钥(由 Trello 提供)并执行 API 调用,如下所示:

Trello.authorize({
    type: 'popup',
    name: 'My App',
    persist: 'true', // the token will be saved on localstorage
    scope: {
        read: 'true',
        write: 'true' 
    },
    expiration: 'never',
    success: authenticationSuccess,
    error: authenticationFailure
});

这会显示一个弹出窗口,要求用户允许(授权)。

我的问题是,如何在这个请求中获取令牌?此方法不提供任何响应。

我发现获取令牌的唯一方法是:将用户发送至...

https://trello.com/1/connect?key=my_developer_key&name=My+App&response_type=token&scope=read,write

但是,用户登陆的空白页面显示:

"You have granted access to your Trello information." "To complete the process, please give this token:" “21265656542121245...sometoken”

我不希望用户需要给我任何令牌。

谁能帮我解决这个问题?谢谢

authenticationSuccess 中您将能够检查 localStorage:

localStorage.trello_token

希望对您有所帮助。

在Angular中,因为在authOpts中persist = true(默认情况下),我能够在成功验证后使用localStorage.getItem('trello_token')从本地存储访问令牌。