In my app, I am using the OAuth properly and am able to interact with a user's file (read, write etc). My flow is currently:
1. Get access_token by having the user allow the app access to their account and calling this endpoint
https://api.dropbox.com/oauth2/token
2. Have user select files from the Chooser
3. Use the access_token and file information to perform the necessary operations
However, now there is a requirement to support multiple dropbox accounts per user. I can once again use the token endpoint to get the access_token for each account, but I am lost on how to get the account ID when the user interacts with the chooser so I can relate each file with the proper access_token. Is there an endpoint or option on the chooser to get the account ID on what the logged in account is when the user opens the Chooser?