gpt4 book ai didi

.htaccess - htaccess 身份验证 rest api 方法

转载 作者:可可西里 更新时间:2023-11-01 17:36:17 26 4
gpt4 key购买 nike

我有使用 CakePHP 构建的 REST API 服务,我需要使用 http 身份验证来保护我的一些方法。例如我有这样的方法:

POST /api/store
{
name: "John",
surname: "Johnny",
...
}

我想保护这个特定路径 (/api/store) 以通过 http 身份验证来调用 cron 作业

http://username:password@server.com/api/store

这样的事情可能吗?如果是这样,那又如何呢?谢谢!

最佳答案

我们解决了这个问题。只要该 url/api/store 不是物理路径,我们就需要采取不同的方法,感谢使用基本的 http 身份验证安全文件夹。

SetEnvIf Request_URI ^/api/store protected_method=true
# we need to match url with regex and set it to "protected_method" variable

# Commom auth
AuthUserFile /absolute/path/to/directory/of/api
AuthName "This method is pwd protected"
AuthType Basic

Order Deny,Allow
Deny from all
Satisfy any

Require valid-user
#check if requested url is one of protected_method
Allow from env=!protected_method

关于.htaccess - htaccess 身份验证 rest api 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30629853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com