0

I'm trying to implement service in my Angular 2 application that will work with Dropbox service with Javascript SDK V2. My model looks like this:

User create folder with photos -> in app user share folder

How to implement method that will share this folder, if folder haven't shared_folder_id?

TheRedo
  • 3
  • 2

1 Answers1

0

If a folder isn't already shared, you can use the sharingShareFolder method in the official Dropbox API v2 JavaScript SDK to share it.

You can then use sharingAddFolderMember to invite other users to it.

Greg
  • 16,359
  • 2
  • 34
  • 44