0

In my app, there can be multiple users, and each user can link to their own dropbox account. Previously, I used

setSharedSession:

But now that there is no DBSession object, how can I let user register different dropbox. Everytime, one user is linking his dropbox, the previous one is getting replaced.

I am having real trouble with the new dropbox SDK (V2). How can I go about doing this?

Zoe
  • 27,060
  • 21
  • 118
  • 148
Natasha
  • 6,651
  • 3
  • 36
  • 58

1 Answers1

0

The Dropbox API v2 Objective-C SDK documentation has information on supporting multiple different accounts via the SDK here:

https://github.com/dropbox/dropbox-sdk-obj-c#multiple-dropbox-user-case

For example, you can use authorizedClients instead of authorizedClient to access all of the saved clients.

Greg
  • 16,359
  • 2
  • 34
  • 44