Я пытаюсь реализовать клиент C # GRPC для etcd v3 +. Я могу подключиться без аутентификации и канала ssl-аутентификации. Однако я также пытаюсь выяснить базовый механизм аутентификации. Вот моя реализация до сих пор.
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
using Grpc.Core;
using Etcdserverpb;
using Google.Protobuf;
using System.Runtime.CompilerServices;
using Grpc.Auth;
using Grpc.Core.Interceptors;
namespace myproj.etcd
{
public class EtcdClient
{
Channel channel;
KV.KVClient kvClient;
string host;
string username;
string password;
string authToken;
Auth.AuthClient authClient;
public EtcdClient(string host, string username, string password)
{
this.username = username;
this.password = password;
this.host = host;
Authenticate();
// Expirementing with the token, trying to achieve my goal.
channel = new Channel(host, ChannelCredentials.Create(ChannelCredentials.Insecure,
GoogleGrpcCredentials.FromAccessToken(this.authToken)));
// This works.
//channel = new Channel(host, ChannelCredentials.Insecure);
kvClient = new KV.KVClient(channel);
}
void Authenticate()
{
authClient = new Auth.AuthClient(new Channel(host,ChannelCredentials.Insecure));
var authRes = authClient.Authenticate(new AuthenticateRequest
{
Name = username,
Password = password
});
this.authToken = authRes.Token;
}
public string Get(string key)
{
try
{
var rangeRequest = new RangeRequest { Key = ByteString.CopyFromUtf8(key) };
var rangeResponse = kvClient.Range(rangeRequest);
if (rangeResponse.Count != 0)
{
return rangeResponse.Kvs[0].Value.ToStringUtf8().Trim();
}
}
catch (Exception ex)
{
}
return String.Empty;
}
}
}
Используя метод authenticate () Я могу получить токен с сервера etcd, но не могу найти способ использовать его в последующих вызовах (Get, Put и т. Д.).
Документацию по Protobuf, используемую для генерации клиентского кода, можно найти здесь
Обновление: Если кто-нибудь захочет взглянуть на полный исходный кодвот ссылка на проект.