我正在尝试演示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 });};
这会打开一个弹出窗口,我可以进行身份验证,然后我被重定向(在弹出窗口中)到https://trello.com/1/token/approve,没有任何反应.弹出窗口没有关闭.
任何帮助,将不胜感激.
在这里下载代码