You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to grpc.io
Hi,
I am using C# unity version of GRPC for gaming purpose. Can someone tell me what HttpClient lib used underneath GRPC and how to expose for other purpose like rest calls for CDN?
Jan Tattermusch
unread,
Oct 6, 2020, 9:08:36 AM10/6/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to grpc.io
Grpc.Core (also called gRPC C#) uses the native gRPC C-core library to make RPCs. C-core has its own custom implementation of http2 client (https://github.com/grpc/grpc/tree/master/src/core). That http2 library is gRPC specific and cannot be reused for making other https requests (such as rest calls).