Jav Google Drive | Reliable

Jav Google Drive | Reliable

private static final String APPLICATION_NAME = "Google Drive API Java Quickstart"; private static final GsonFactory GSON_FACTORY = GsonFactory.getDefaultInstance(); private static final String[] SCOPES = {DriveScopes.DRIVE_METADATA_READONLY}; private static final String CREDENTIALS_FILE_PATH = "/path/to/credentials.json";

Drive service = new Drive.Builder(GoogleNetHttpTransport.newTrustedTransport(), GSON_FACTORY, request -> request) .setApplicationName(APPLICATION_NAME) .setAuthorizationCodeFlow(flow) .setAuthenticated(HttpCredentialsProvider.newBuilder() .setClientId(clientSecrets.getClientId()) .setClientSecret(clientSecrets.getClientSecret()) .build()) .build(); jav google drive

// Build flow and and authenticate GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(GoogleNetHttpTransport.newTrustedTransport(), GSON_FACTORY, clientSecrets, SCOPES) .setAccessType("offline") .build(); private static final String APPLICATION_NAME = "Google Drive

import java.io.File; import java.io.IOException; import java.security.GeneralSecurityException; SCOPES) .setAccessType("offline") .build()

public class GoogleDriveExample {