Unable to create directory /tokens when applying google drive api quickstartGet Google API TokenGet refresh token google apigetting compilation errors in java code to upload txt file on google drivegoogle drive quickstart sample error in androidGoogle Drive Android API Authentication ProblemsGoogle Drive Api Java Quickstart compile errorGoogle Drive api Java QuickStart EOFExceptionGoogle Drive authorization with refresh tokenClarifications on Google Drive Java QuickstartUnable to create Token directory for Google Drive
How does the Melf's Minute Meteors spell interact with the Evocation wizard's Sculpt Spells feature?
VHF 50 Ω Antenna Over 75 Ω TV Coax
First Entry Member State schengen visa
When I press the space bar it deletes the letters in front of it
Non-Chromatic Orchestral Instruments?
How was the Shuttle loaded and unloaded from its carrier aircraft?
Object's height not a multiple of layer height
How to find the positions of replaced elements in a list
IX-NAY on the IX-SAY
How insert vertex in face?
What is a writing material that persists nearly forever or for a long time?
What does Middle English "bihiȝten" mean?
Was it ever illegal to name a pig "Napoleon" in France?
Are all diatonic chords in the diminished scale diminished?
I make billions (#6)
How should I ask for a "pint" in countries that use metric?
Publishing papers seem natural to many, while I find it really hard to think novel stuff to pursue till publication. How to cope up with this?
What was this character's plan?
Write a function
What are the consequences for a developed nation to not accept any refugees?
What exactly is a "murder hobo"?
When an electron changes its spin, or any other intrinsic property, is it still the same electron?
Did depressed people far more accurately estimate how many monsters they killed in a video game?
Is it better in terms of durability to remove card+battery or to connect to charger/computer via USB-C?
Unable to create directory /tokens when applying google drive api quickstart
Get Google API TokenGet refresh token google apigetting compilation errors in java code to upload txt file on google drivegoogle drive quickstart sample error in androidGoogle Drive Android API Authentication ProblemsGoogle Drive Api Java Quickstart compile errorGoogle Drive api Java QuickStart EOFExceptionGoogle Drive authorization with refresh tokenClarifications on Google Drive Java QuickstartUnable to create Token directory for Google Drive
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I tried to upload an image to google drive using drive API instructed on https://developers.google.com/drive/api/v3/quickstart/java.
public static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();
public static final String TOKENS_DIRECTORY_PATH = "E:/tokens";
public static final List<String> SCOPES = Collections.singletonList(DriveScopes.DRIVE_APPDATA);
public static final String CREDENTIALS_FILE_PATH = "credentials.json";
public static Credential getCredentials(Context context, final NetHttpTransport HTTP_TRANSPORT) throws IOException
InputStream in = context.getAssets().open(CREDENTIALS_FILE_PATH);
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH)))
.setAccessType("offline")
.build();
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
And here where I call getCredentials method.
private void uploadImageToDrive(Uri uri) throws IOException, GeneralSecurityException
try
GoogleDriveUpload gdu = new GoogleDriveUpload();
final NetHttpTransport HTTP_TRANSPORT = new com.google.api.client.http.javanet.NetHttpTransport();
Drive driveService = new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, gdu.getCredentials(AccountInformationSignUpActivity.this, HTTP_TRANSPORT))
.setApplicationName(APPLICATION_NAME)
.build();
String folderId = "1B7EWlFJUGmQ8qHHgMFIzuGL0i-eXl3J_";
File fileMetadata = new File();
fileMetadata.setName("photo.jpg");
fileMetadata.setParents(Collections.singletonList(folderId));
java.io.File filePath = new java.io.File(uri.getPath());
FileContent mediaContent = new FileContent("image/jpeg", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
.setFields("id, parents")
.execute();
Log.d("File ID: ", file.getId());
catch (FileNotFoundException e)
e.getStackTrace();
I put file credentials.json under main/assets/credentials.json
And It returns an error saying unable to create directory /tokens.
Is there any place where I'm wrong?
java android file token
add a comment |
I tried to upload an image to google drive using drive API instructed on https://developers.google.com/drive/api/v3/quickstart/java.
public static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();
public static final String TOKENS_DIRECTORY_PATH = "E:/tokens";
public static final List<String> SCOPES = Collections.singletonList(DriveScopes.DRIVE_APPDATA);
public static final String CREDENTIALS_FILE_PATH = "credentials.json";
public static Credential getCredentials(Context context, final NetHttpTransport HTTP_TRANSPORT) throws IOException
InputStream in = context.getAssets().open(CREDENTIALS_FILE_PATH);
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH)))
.setAccessType("offline")
.build();
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
And here where I call getCredentials method.
private void uploadImageToDrive(Uri uri) throws IOException, GeneralSecurityException
try
GoogleDriveUpload gdu = new GoogleDriveUpload();
final NetHttpTransport HTTP_TRANSPORT = new com.google.api.client.http.javanet.NetHttpTransport();
Drive driveService = new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, gdu.getCredentials(AccountInformationSignUpActivity.this, HTTP_TRANSPORT))
.setApplicationName(APPLICATION_NAME)
.build();
String folderId = "1B7EWlFJUGmQ8qHHgMFIzuGL0i-eXl3J_";
File fileMetadata = new File();
fileMetadata.setName("photo.jpg");
fileMetadata.setParents(Collections.singletonList(folderId));
java.io.File filePath = new java.io.File(uri.getPath());
FileContent mediaContent = new FileContent("image/jpeg", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
.setFields("id, parents")
.execute();
Log.d("File ID: ", file.getId());
catch (FileNotFoundException e)
e.getStackTrace();
I put file credentials.json under main/assets/credentials.json
And It returns an error saying unable to create directory /tokens.
Is there any place where I'm wrong?
java android file token
add a comment |
I tried to upload an image to google drive using drive API instructed on https://developers.google.com/drive/api/v3/quickstart/java.
public static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();
public static final String TOKENS_DIRECTORY_PATH = "E:/tokens";
public static final List<String> SCOPES = Collections.singletonList(DriveScopes.DRIVE_APPDATA);
public static final String CREDENTIALS_FILE_PATH = "credentials.json";
public static Credential getCredentials(Context context, final NetHttpTransport HTTP_TRANSPORT) throws IOException
InputStream in = context.getAssets().open(CREDENTIALS_FILE_PATH);
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH)))
.setAccessType("offline")
.build();
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
And here where I call getCredentials method.
private void uploadImageToDrive(Uri uri) throws IOException, GeneralSecurityException
try
GoogleDriveUpload gdu = new GoogleDriveUpload();
final NetHttpTransport HTTP_TRANSPORT = new com.google.api.client.http.javanet.NetHttpTransport();
Drive driveService = new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, gdu.getCredentials(AccountInformationSignUpActivity.this, HTTP_TRANSPORT))
.setApplicationName(APPLICATION_NAME)
.build();
String folderId = "1B7EWlFJUGmQ8qHHgMFIzuGL0i-eXl3J_";
File fileMetadata = new File();
fileMetadata.setName("photo.jpg");
fileMetadata.setParents(Collections.singletonList(folderId));
java.io.File filePath = new java.io.File(uri.getPath());
FileContent mediaContent = new FileContent("image/jpeg", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
.setFields("id, parents")
.execute();
Log.d("File ID: ", file.getId());
catch (FileNotFoundException e)
e.getStackTrace();
I put file credentials.json under main/assets/credentials.json
And It returns an error saying unable to create directory /tokens.
Is there any place where I'm wrong?
java android file token
I tried to upload an image to google drive using drive API instructed on https://developers.google.com/drive/api/v3/quickstart/java.
public static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();
public static final String TOKENS_DIRECTORY_PATH = "E:/tokens";
public static final List<String> SCOPES = Collections.singletonList(DriveScopes.DRIVE_APPDATA);
public static final String CREDENTIALS_FILE_PATH = "credentials.json";
public static Credential getCredentials(Context context, final NetHttpTransport HTTP_TRANSPORT) throws IOException
InputStream in = context.getAssets().open(CREDENTIALS_FILE_PATH);
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH)))
.setAccessType("offline")
.build();
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
And here where I call getCredentials method.
private void uploadImageToDrive(Uri uri) throws IOException, GeneralSecurityException
try
GoogleDriveUpload gdu = new GoogleDriveUpload();
final NetHttpTransport HTTP_TRANSPORT = new com.google.api.client.http.javanet.NetHttpTransport();
Drive driveService = new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, gdu.getCredentials(AccountInformationSignUpActivity.this, HTTP_TRANSPORT))
.setApplicationName(APPLICATION_NAME)
.build();
String folderId = "1B7EWlFJUGmQ8qHHgMFIzuGL0i-eXl3J_";
File fileMetadata = new File();
fileMetadata.setName("photo.jpg");
fileMetadata.setParents(Collections.singletonList(folderId));
java.io.File filePath = new java.io.File(uri.getPath());
FileContent mediaContent = new FileContent("image/jpeg", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
.setFields("id, parents")
.execute();
Log.d("File ID: ", file.getId());
catch (FileNotFoundException e)
e.getStackTrace();
I put file credentials.json under main/assets/credentials.json
And It returns an error saying unable to create directory /tokens.
Is there any place where I'm wrong?
java android file token
java android file token
edited Sep 12 '18 at 11:52
Fantômas
33.3k15 gold badges66 silver badges92 bronze badges
33.3k15 gold badges66 silver badges92 bronze badges
asked Sep 12 '18 at 11:16
TedxxxxTedxxxx
911 silver badge12 bronze badges
911 silver badge12 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52293876%2funable-to-create-directory-tokens-when-applying-google-drive-api-quickstart%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52293876%2funable-to-create-directory-tokens-when-applying-google-drive-api-quickstart%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown