是否可以在 Blazor Server 中进行本地 HTTP 调用?

发布于 2025-01-10 03:13:05 字数 240 浏览 1 评论 0原文

我们正在为我们的应用程序使用 Blazor Server。我们的一些用户在其本地环境中拥有无法从外部访问的 Intranet Rest Web API。

是否可以从 Blazor Server 应用程序对其 Intranet Rest Web api 进行 HTTP 调用?这样做的原因是,用户希望我们将发票数据集成到他们的服务中,如果我们可以在客户端中进行本地 HTTP 调用,我们希望调用他们的本地 api 来发送我们的发票数据以与他们的系统集成。

We are using Blazor Server for our application. Some of our users have intranet rest web api's in their local environment that is not accesible from outside world.

Is it possible to make HTTP calls to their intranet rest web api's from Blazor Server application ? The reason for this, users wants us to integrate invoice data to their service, and if we can make local HTTP calls in client, we want to call their local api to send our invoice data for integration with their system.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恰似旧人归 2025-01-17 03:13:05

当 Blazor 服务器后端可以看到这些 REST API 时,您可以从后端调用这些 API。此外,当用户浏览器可以看到这些 REST API 时,您可以从浏览器调用这些 REST API。

认证呢?这些 REST API 如何保证安全?用户是否正在登录您的 Web 应用程序?您是否计划将 Web 应用程序的用户身份传递给这些 REST API?

When there is line of sight from your Blazor Server backend to these REST APIs then you can call these APIs from the backend. Additionally, when there is line of sight from the user's browser to these REST APIs, you can call these REST APIs from the browser.

What about authentication? How are these REST APIs secured? Are users logging into your web app and are you planning to passthrough the user identity of your web app to these REST APIs?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文