Trello API身份验证弹出窗口未关闭

Gen*_*ere 6 javascript trello microsoft-edge

我正在尝试演示Trello API,但我遇到了身份验证过程的问题.

var ConnectToTrello = function () {
//console.log("Authenticating");
Trello.authorize({
    type: 'popup',
    name: 'Outlook Trello Add-In',
    scope: { read: true, write: true, account: true },
    success: authenticationSuccess,
    error: authenticationError
});};
Run Code Online (Sandbox Code Playgroud)

这会打开一个弹出窗口,我可以进行身份​​验证,然后我被重定向(在弹出窗口中)到https://trello.com/1/token/approve,没有任何反应.弹出窗口没有关闭.

任何帮助,将不胜感激.

在这里下载代码

小智 0

我在使用 时遇到了某些浏览器中选项卡无法关闭的问题type: 'popup'。你能用type: 'redirect'吗?我用这种方法取得了更大的成功。