You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

Andrii M.'s avatar
Andrii M.
Helpful | Level 5
9 years ago

OAuth2 with IWebBrowser2

Hi. I am doing some app in C++ using IWebBrowser2 for authenticating user. The problem is that this browser component does not allow catching redirects so in the end of the either code or token flow the component just shows "cannot display the page <my redirect uri>"

For such stupid components like IWebBrowser2 Google Docs API, for example, allow returning of some special web page (instead of redirecting) with stable format so the app can parse it and get the auth code.

Please advice me if using code flow with no redirect uri is what I need? I mean, if the format of the returned page is stable so I can rely on it and parse it to find the auth code?

  • Hi Stephen. Thank you for response.

    I read about this way but ideally my app would connect to Dropbox without need of user's copy-paste.

    Anyway, I managed to beat the IWebBrowser2 to work with Dropbox OAuth2 flow. Eventually, for some URIs it gives correct address and https://www.dropbox.com/1/oauth2/redirect_receiver appeared to be one of them.

  • Hi Andrii, you might try simply hitting the https://www.dropbox.com/1/oauth2/authorize endpoint without without passing the 'redirect_uri' web parameter. 

    The desired url might look something like this:

    https://www.dropbox.com/1/oauth2/authorize?client_id=<CLIENT APP KEY>&response_type=code

    This will return a response with an OAuth code embedded in the page content without triggering a redirect. 

    With regard to your question about page stability, we make no guarantees that the html content that we return will not change. Therefore, we recommend that you do not resort to parsing the response page to retrieve the OAuth token.

  • Andrii M.'s avatar
    Andrii M.
    Helpful | Level 5

    Hi Stephen. Thank you for response.

    I read about this way but ideally my app would connect to Dropbox without need of user's copy-paste.

    Anyway, I managed to beat the IWebBrowser2 to work with Dropbox OAuth2 flow. Eventually, for some URIs it gives correct address and https://www.dropbox.com/1/oauth2/redirect_receiver appeared to be one of them.