を閉じていません。Trello API認証ポップアップ私は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に(ポップアップで)リダイレクトされますと、何も起こりません。ポップアップが閉じていません。
ご協力いただければ幸いです。
ダウンロードthe code here
'authenticationSuccess'と' authenticationError'の身体は何ですか? –
var authenticationSuccess = function(応答){ console.log(応答); $( '#btnAuthenticate')。hide(); } VARのauthenticationError =関数(誤差){ にconsole.log(エラー)あなたはこの問題を解決する } –
私はソースコードを追加して、[ここ](https://onedrive.live.com/redir?resid=B715E2BC3D00A40C!874085&authkey=!AMwyd0USglqKHb4&ithint=file%2czip) –