您可以通过创建基于 HttpBasicAuth 的自定义中间件来实现,该中间件仅针对特定路由运行:
class HttpBasicAuthCustom extends \Slim\Extras\Middleware\HttpBasicAuth {
protected $route;
public function __construct($username, $password, $realm = 'Protected Area', $route = '') {
$this->route = $route;
parent::__construct($username, $password, $realm);
}
public function call() {
if(strpos($this->app->request()->getPathInfo(), $this->route) !== false) {
parent::call();
return;
}
$this->next->call();
}
}
$app->add(new HttpBasicAuthCustom('username', 'password', 'Some Realm Name', 'someroute'));
$app->get('/someroute', function () use ($app) {
echo "Welcome!";
})->name('someroute');
感谢http://help.slimframework.com/discussions/questions/296-middleware-usage-only-on-specific-routes