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

FSUInnovation's avatar
FSUInnovation
Explorer | Level 4
5 years ago

API oauth code/token storage php

What array variable get returned to following the redirect uri upon a successful oauth2 flow on my app? Is it stored in a variable like $_GET['code'] or something like that? I tried checking for it in a variable and I recieved a error that the variable did not exist.

  • You can find examples of the information included on the redirect URI after the user authorizes the app in the /oauth2/authorize documentation, under the "Returns" section:

    https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize

    Specifically, there is a "Sample response" for both the code and token flow.

    Note that for the code flow, the values are passed as URL parameters, so they do get sent to your server. Exactly how the URL parameters are made available to your will depend on the web framework you're using, so I can't offer detailed insight on that. I recommend referring to the documentation for your web framework.

    For the token flow, they are passed on the URL fragment, and so do not get sent to your server.

     

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff

    You can find examples of the information included on the redirect URI after the user authorizes the app in the /oauth2/authorize documentation, under the "Returns" section:

    https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize

    Specifically, there is a "Sample response" for both the code and token flow.

    Note that for the code flow, the values are passed as URL parameters, so they do get sent to your server. Exactly how the URL parameters are made available to your will depend on the web framework you're using, so I can't offer detailed insight on that. I recommend referring to the documentation for your web framework.

    For the token flow, they are passed on the URL fragment, and so do not get sent to your server.

     

    • FSUInnovation's avatar
      FSUInnovation
      Explorer | Level 4

      I use php with an apache and mysql server. I don't have any framework like laravel that I use.

      • Greg-DB's avatar
        Greg-DB
        Icon for Dropbox Staff rankDropbox Staff

        In that case I recommend checking the documentation for how to access the URL parameters for the URL from Apache in PHP. Those aren't made by Dropbox so unfortunately I can't provide specific guidance for that. (It sounds like you're making a web app though so do make sure you are using you're using the "code" flow and not the "token" flow.)

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,915 PostsLatest Activity: 15 hours ago
333 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!