使用com.google.cloud.google云库(http://googlecloudplatform.github.io/google-cloud-java/0.21.1/index.html),我有以下Google Cloud Platform pub / sub代码:
TopicName topicName = TopicName.create("projectId...", "topic...");
Publisher pub = Publisher.defaultBuilder(topicName).build();
如何提供发布商使用的凭据?我已将它们放在内存中,因为它们是通过其他方式配置而不是将它们硬编码到文件中。
使用自定义凭据的所有示例如下:
Storage storage = StorageOptions.newBuilder()
.setProjectId(PROJECT_ID)
.setCredentials(GoogleCredentials.fromStream(
new FileInputStream(PATH_TO_JSON_KEY))).build();
Bucket bucket = storage.create(BucketInfo.of("myBucketName"));
但是没有PubSubOptions或PublisherOptions类来编写类似的代码(我将FileInputStream替换为ByteArrayInputStream)。
以下是遇到相同问题但代码示例无效的人:https://github.com/GoogleCloudPlatform/google-cloud-java/issues/1751
答案 0 :(得分:6)
您可以在构建器上设置凭据提供程序:
GoogleCredentials credentials = GoogleCredentials.fromStream(
new FileInputStream(PATH_TO_JSON_KEY)));
Publisher pub = Publisher
.defaultBuilder(topicName)
.setCredentialsProvider(FixedCredentialsProvider.create(credentials))
.build();
现在,这将设置CallSettings
使用...但我不认为它将设置设置频道本身时使用的凭据。 (看起来Java gRPC代码和我更熟悉的C#代码之间可能存在差异。)
答案 1 :(得分:0)
界面略有变化。您现在应该使用:
GoogleCredentials credentials = GoogleCredentials.fromStream(new FileInputStream("<path-to-service-account JSON file>"));
Publisher publisher = Publisher
.newBuilder(topicName)
.setCredentialsProvider(FixedCredentialsProvider.create(credentials))
.build();