🍳
Das Kochbuch
by Chef T
{ const params = new URLSearchParams(window.location.search); const code = params.get("code"); const state = params.get("state"); if (code && state === "dropbox_auth") { // Clean URL window.history.replaceState({}, document.title, window.location.pathname); // Exchange code for token dropboxExchangeCode(code, "https://kochbuch-6xk.pages.dev/") .then(data => { if (data.refresh_token) { localStorage.setItem("kb_dbxtoken", data.refresh_token); setDbxToken(data.refresh_token); } }) .catch(e => console.error("OAuth error:", e)); } }, []); >