如何限制其他域调用 Web api,意味着我只想允许一个特定域调用 Web api

发布于 2025-01-16 19:34:57 字数 316 浏览 0 评论 0原文

我正在 Web Api 中做一个项目,我想限制其他域调用我的 Web api,但只允许我的域名。 我怎样才能限制它, 我正在等待您宝贵的答案,

我在 WebApiConfig 中添加了此代码

config.EnableCors();

,并在控制器顶部添加了以下代码

[EnableCors(origins: "http://localhost:49873", headers: "accept,content-type,origin,x-my-header", methods: "*")]

I'm doing one project in Web Api, I want to restrict other domains calling my web api, but only allow my domain name only.
How can I restrict that,
I'm waiting for your valuable answers

I added this code inside WebApiConfig

config.EnableCors();

and the following code on top of the controller

[EnableCors(origins: "http://localhost:49873", headers: "accept,content-type,origin,x-my-header", methods: "*")]

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文