Closed heronyang closed 7 years ago
This is because the file path of the credentials are illegal. Please change the code in drive_api.java
private static final java.io.File DATA_CREDENTIALS_DIR = new java.io.File(
"/.credentials/drive-java-quickstart");
to
``private static final java.io.File DATA_CREDENTIALS_DIR = new java.io.File(
System.getProperty("user.home"), ".credentials/drive-java-quickstart");
Trying to fix this bug in the next release