Authentication using a token
The article is being updated.
Go
AuthProvider authProvider = CloudAuthProvider.newAuthProvider(
IamTokenCredentialProvider.builder()
.token(accessToken)
.build()
GrpcTransport transport = GrpcTransport.forConnectionString(connectionString)
.withAuthProvider(authProvider)
.build();
.build());
doWork(tableClient);