You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to test against a local grpc server with flutter web, but I keep getting net::ERR_CERT_AUTHORITY_INVALID. Is there a way to trust invalid certificates like I can with ClientChannel?
Grpc Version
grpc: ^2.1.3
Current Code
static final String _serviceAddress = 'grpc.localhost';
static final int _servicePort = 8090;
static final GrpcWebClientChannel _grpcChannel = GrpcWebClientChannel.xhr(
Uri(scheme: "https", host: _serviceAddress, port: _servicePort),
);
static final _client = new AccountServiceClient(_grpcChannel,
options: CallOptions(timeout: Duration(seconds: 30)));