We're making changes to the Community, so you may have received some notifications - thanks for your patience and welcome back. Learn more here.

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.

About Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,875 PostsLatest Activity: 2 years ago
323 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!