Hi,
I have saved data on dropbox via android app. Now i want to share it with my friends inside app only. But i could not get the metadata of the resource of other user.
I also tried to add members to the subfolders via below code,
List<AddMember> members = new ArrayList<AddMember>();
members.add(new AddMember(MemberSelector.email("************.*****@****com"), AccessLevel.EDITOR));
DropboxClientFactory.getClient().sharing().addFolderMember(
SharedPref.getInstance(context).getString(Constants.USER_ROOT_FOLDER_ID), members);
but it always says that *Yout API app is an "app folder" app. It is not allowed to access this API function.*
Please suggest if i can do it in any ways.