Hi again,
Sorry if it's a stupid question but where exactly should I see the "v1_retired" error? Here is the part of my code where I'm trying to upload a file into the DropBox folder:
try
{
if (!dbxFs.exists(testPath))
{
testFile = dbxFs.create(testPath);
testFile.writeFromExistingFile(file, false);
testFile.close();
}
}
catch (DbxException.Request e)
{
e.printStackTrace();
return false;
}
catch (DbxException.Disallowed e)
{
e.printStackTrace();
return false;
}
catch (DbxException.Unauthorized e)
{
e.printStackTrace();
return false;
}
catch (DbxException.NotFound e)
{
e.printStackTrace();
return false;
}
catch (DbxException e)
{
e.printStackTrace();
return false;
}
catch (IOException e)
{
e.printStackTrace();
return false;
}
but I'm not getting any exception, is this where I should get the error? in which of the exceptions should it accord?
Thanks.