Comments
-
I wanted to add 2 things: Backspace deletes an entire line Selecting a block of text and pressing Backspace (or Delete) does nothing. I'm using MacOS + Firefox. Confirmed same behaviour also on Safari, no browser extensions installed.
-
Ah, it seems that I have gone in the wrong direction. Yes, the documentation explains that the login code was one-time, I don't know why I got confused at some point in the implementation. I've made the corrections -- the token obtained by getAccessTokenFromCode() yesterday, preserved in local storage, is valid today, even…
-
I've reverted the workflow on Chrome away from launchWebAuthFlow(), it wasn't needed on Chrome to begin with. One benefit is that now I can trace the complete workflow as I have my own OAuth receiver page. One good thing: I no longer have to re-enter my user name and password if I'm already logged in on that Chrome…
-
Thank you very much for your response. I see my mistake as I haven't used the refresh token via setRefreshToken(), I've made the correction. I will debug a bit more the code on my side the way I call the Dropbox API.
-
Thanks for the quick response. It seems that browser.identity.getRedirectURL() is on the right path. I've experimented by adding and removing my extension from the browser a few times, the URL changes but the result of browser.identity.getRedirectURL() is stable. Now, this is good but... I'm afraid there is more to make it…