Hello, I have an app in the app store, backpack studio, that allows access to reading and writing audio files through dropbox.... I have a user that would like me to support dropbox "teams" so that they can have the same functionality they have on dropbox.com - manage their teams individiual (purple) folders and team files inside the app.
I'm using the objective-c API and am able to get this far:
[DBClientsManager authorizedTeamClient];
DBTEAMTeamAuthRoutes *routes = teamclient.teamRoutes;
[[routes teamFolderList] setResponseBlock...
I get back: This API function requires a Dropbox Business API app key, but the OAuth 2 access token you provided was created with a Dropbox API app key. To create a a Dropbox Business API app key, see...
Does that mean that i'm unable to add this functionality without a creating a separate app designed specifically for business teams? Or am i simply making the wrong api call to get the folder data?
DBTEAMTeamAuthRoutes *routes = teamclient.teamRoutes;
DBTransportDefaultClient *transportclient = routes.client;
[[routes teamFolderList] setResponseBlock:^(DBTEAMTeamFolderListResult * _Nullable result, DBTEAMTeamFolderListError * _Nullable routeError, DBRequestError * _Nullable networkError) {