如何在 symfony 4.4 中使用基本身份验证限制发布请求
我需要使用基本身份验证保护POST 请求 就像 Symfony 4.4 中的 http://host/import/myfile
In security.yaml 一样,我尝试了这个,但它不起作用
providers:
authorized_users:
http_basic:
- identifier: '%env(HTTP_BASIC_AUTH_USERNAME)%'
- password: '%env(HTTP_BASIC_AUTH_PASSWORD)%'
firewalls:
secured_area:
methods: [POST]
pattern: ^/import/myfile
provider: authorized_users
I need to protect a POST request with basic auth
like http://host/import/myfile in Symfony 4.4
In security.yaml, I tried this but It doesn't work
providers:
authorized_users:
http_basic:
- identifier: '%env(HTTP_BASIC_AUTH_USERNAME)%'
- password: '%env(HTTP_BASIC_AUTH_PASSWORD)%'
firewalls:
secured_area:
methods: [POST]
pattern: ^/import/myfile
provider: authorized_users
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以上就是小编的解答,希望对大家有所帮助!
Here is the answer, hope that will help !