Authentication using a service account file
The article is being updated.
Go
AuthProvider authProvider = CloudAuthProvider.newAuthProvider(
ApiKeyCredentialProvider.builder()
.fromFile(saKeyPath)
.build()
GrpcTransport transport = GrpcTransport.forConnectionString(connectionString)
.withAuthProvider(authProvider)
.build();
.build());
doWork(tableClient);