Training
Module
Implement HTTP operations in ASP.NET Core Blazor Web apps - Training
Implement HTTP operations in ASP.NET Core Blazor Web apps
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
This isn't the latest version of this article. For the current release, see the .NET 9 version of this article.
Warning
This version of ASP.NET Core is no longer supported. For more information, see the .NET and .NET Core Support Policy. For the current release, see the .NET 9 version of this article.
Important
This information relates to a pre-release product that may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
For the current release, see the .NET 9 version of this article.
It's not possible to directly call a gRPC service from a browser. gRPC uses HTTP/2 features, and no browser provides the level of control required over web requests to support a gRPC client.
gRPC on ASP.NET Core offers two browser-compatible solutions, gRPC-Web and gRPC JSON transcoding.
gRPC-Web allows browser apps to call gRPC services with the gRPC-Web client and Protobuf.
.proto
file..NET has built-in support for gRPC-Web. For more information, see gRPC-Web in ASP.NET Core gRPC apps.
gRPC JSON transcoding allows browser apps to call gRPC services as if they were RESTful APIs with JSON.
.proto
file with HTTP metadata..NET has built-in support for creating JSON web APIs from gRPC services. For more information, see gRPC JSON transcoding in ASP.NET Core gRPC apps.
Note
gRPC JSON transcoding requires .NET 7 or later.
ASP.NET Core feedback
ASP.NET Core is an open source project. Select a link to provide feedback:
Training
Module
Implement HTTP operations in ASP.NET Core Blazor Web apps - Training
Implement HTTP operations in ASP.NET Core Blazor Web apps
Documentation
gRPC-Web in ASP.NET Core gRPC apps
Learn how to configure gRPC services on ASP.NET Core to be callable from browser apps using gRPC-Web.
gRPC JSON transcoding in ASP.NET Core gRPC apps
Learn how to create JSON HTTP APIs for gRPC services using gRPC JSON transcoding.
gRPC services with ASP.NET Core
Learn the basic concepts when writing gRPC services with ASP.NET Core.