Ich versuche, die Trello API zu demonstrieren, aber ich habe Probleme mit der Authentifizierungsprozedur.Trello API Authentifizierung Popup nicht geschlossen
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
});};
Dies öffnet ein Popup, wo ich die Authentifizierung tun kann, dann ich weitergeleitet (im Popup) https://trello.com/1/token/approve und nichts passiert. Das Popup schließt nicht.
Jede Hilfe wäre willkommen.
herunterladen the code here
Was ist der Körper von 'authenticationSuccess' und' authenticationError'? –
var authenticationSuccess = Funktion (Antwort) { console.log (Antwort); $ ('# btnAuthenticate'). Hide(); } var authenticationError = Funktion (Fehler) { console.log (Fehler); } –
Ich habe den Quellcode [hier] (https://onedrive.live.com/redir?resid=B715E2BC3D00A40C!874085&authkey=!AMwyd0USglqKHb4&ithint=file%2czip) –