Auth0을 사용하여 인증할 수 없는 이유는 무엇입니까?

2226 단어 helpphplaravel
Auth0을 사용하여 인증 가능한 끝점을 만들려고 합니다.






Auth0 upon laravel 5.8 unable to authenticatean entpoint: Auth0\Login\Auth0Service::__construct() must be of the type array, null given,


22년 9월 13일
댓글: 1
답: 0


0





기존 laravel 5.8 애플리케이션에서 auth0 라이브러리를 사용하여 끝점을 인증하려고 합니다(심각한 업그레이드가 필요하다는 것을 알고 있지만 시간이 없습니다).
$ composer require auth0/login
$ php artisan vendor:publish --tag=auth0-config
그리고 다음 경로를 만들었습니다.
Route::prefix('/test')->middleware(['auth0.authenticate'])->group(function(){
    Route::get("/hello",function(){
        return response()->json([
            'message' => 'Hello from




Open Full Question


하지만 이 오류가 발생했습니다.

Argument 1 passed to Auth0\Login\Auth0Service::__construct() must be of the type array, null given, called in /var/www/html/api/vendor/auth0/login/src/Auth0/Login/LoginServiceProvider.php on line 68


누군가 나를 도울 수 있습니까?

좋은 웹페이지 즐겨찾기