You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IAmVigneswaran
changed the title
Separate switch for authorization code for Dropbox refresh token
Separate switches for authorization code for Dropbox refresh token
Feb 9, 2024
After experimenting, we have discovered that we can't able to split the process of the getting the URL first and then entering the authorization code separately.
The first step is getting the authorization URL from the Dropbox server and 2nd step is to send the auth code again to the server to get the refresh token. The catch here is, we have to create a SINGLE session to get the url and send the authorization code to get the refresh token. Every session is unique and authorization code received from one session cannot be passed to another session.
When we splitting our refresh-token step into 2 step process, we have to create 2 sessions because we cannot persists the session between 2 runs of the Airlift binary and therefore the code received from the first session of first step cannot be passed to the session created in 2nd step both must be done in the same step.
TheAcharya/MarkerData#2 (comment)
The text was updated successfully, but these errors were encountered: