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
누군가 나를 도울 수 있습니까?
Reference
이 문제에 관하여(Auth0을 사용하여 인증할 수 없는 이유는 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pcmagas/why-i-am-unable-to-authenticate-using-auth0-2962텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)