Hi,
I am using dropbox-sdk-java and Using method to check connectivity to Dropbox in this way
DbxRequestConfig config = new DbxRequestConfig("my-app");
DbxClientV2 client = new DbxClientV2(config, "my_token");
client.check().user("test").getResult();
If I have the full permission (whole dropbox) test is working fine as it should but when I create "App Folder" permission it does not work and it gave me this error:
com.dropbox.core.BadRequestException: Error in call to API function "check/user": Your API app is an "App Folder" app.
It is not allowed to access this API function.
which means that for "App Folder" permission I cannot call the test connectivity. My question is why ? I just want to make test connectivity to dropbox and it does not what permission I have. It is bug or this is how it is supposted to be?
I see in Check app that this endpoint does not support apps with the app folder permission but I why it is a problem with this kind of permission.
Thank you for your answer.