是否可以在 Blazor Server 中进行本地 HTTP 调用?
我们正在为我们的应用程序使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 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?