0

In the Dropbox markdown webhook example, they used the DropboxOAuth2Flow from the Python SDK to link a Dropbox account to the Webhook app. I want to implement the same thing in Node.js and I couldn't find any thing similar in their JavaScript SDK documentation.

Thanks

DINO
  • 191
  • 1
  • 12

1 Answers1

0

You can find an example of using the OAuth flow in Node via the official Dropbox API v2 JavaScript SDK here:

https://github.com/dropbox/dropbox-sdk-js/blob/main/examples/javascript/simple-backend/code_flow_example.js

Greg
  • 16,359
  • 2
  • 34
  • 44