Java tutorial
package domain.bsu.dektiarev.service; /* * Copyright 2016 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import com.google.api.client.googleapis.auth.oauth2.GoogleCredential; import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport; import com.google.api.client.http.HttpTransport; import com.google.api.client.json.JsonFactory; import com.google.api.client.json.jackson2.JacksonFactory; import com.google.api.services.storage.Storage; import com.google.api.services.storage.StorageScopes; import java.io.FileInputStream; import java.io.IOException; import java.security.GeneralSecurityException; import java.util.Collection; import java.util.Collections; /** * This class manages the details of creating a Storage service, including auth. */ public class StorageFactory { private static Storage instance = null; public static synchronized Storage getService() throws IOException, GeneralSecurityException { if (instance == null) { instance = buildService(); } return instance; } private static Storage buildService() throws IOException, GeneralSecurityException { HttpTransport transport = GoogleNetHttpTransport.newTrustedTransport(); JsonFactory jsonFactory = new JacksonFactory(); /*GoogleCredential credential = GoogleCredential.getApplicationDefault(transport, jsonFactory);*/ GoogleCredential credential = GoogleCredential .fromStream(new FileInputStream("resources/APNewsFeed-7e0946ab6fb1.json")) .createScoped(Collections.singleton(StorageScopes.DEVSTORAGE_READ_WRITE)); if (credential.createScopedRequired()) { Collection<String> bigqueryScopes = StorageScopes.all(); credential = credential.createScoped(bigqueryScopes); } return new Storage.Builder(transport, jsonFactory, credential).setApplicationName("newsfeedforhybridcloud") .build(); } }