gpt4 book ai didi

Laravel Passport 错误 - RequestException.php 第 107 行中的 ServerException

转载 作者:行者123 更新时间:2023-12-02 02:03:11 26 4
gpt4 key购买 nike

请帮忙。

我一步步按照教程Laravel 5.3 中的新增功能:Laravel Passport ( https://laracasts.com/series/whats-new-in-laravel-5-3/episodes/13 ) 进行操作,但出现以下错误:

RequestException.php 第 107 行中的 ServerException:服务器错误:POST http://latest.dev/oauth/token 导致 500 内部服务器错误 响应:SQLSTATE[42S02]: 未找到基表或 View : 1146 表 'consumer.oauth_clients' 不存在 (SQL: select * from `oa (truncated...)

consumer.dev

use Illuminate\Http\Request;Route::get('/', function () {    $query = http_build_query([        'client_id'     => 4,        'redirect_uri'  => 'http://consumer.dev/callback',        'response_type' => 'code',        'scope'         => '',    ]);    return redirect('http://latest.dev/oauth/authorize?'.$query);});Route::get('/callback', function(Request $request) {    $http = new GuzzleHttp\Client;    $response = $http->post('http://latest.dev/oauth/token', [        'form_params'   => [            'grant_type'        => 'authorization_code',            'client_id'         => 4,            'client_secret'     => 'a8OifFPH38rMi1I6vjmV3O8XD55hAk2FG4f95j9W',            'redirect_uri'      => 'http://consumer.dev/callback',            'code'              => $request->code,        ],    ]);    return json_decode((string) $response->getBody(), true);});

最佳答案

运行以下命令

php artisan serve

并将 URL 链接替换为由 artisanserve 命令创建的新 URL。
然后再试一次 - 然后它就会起作用。

关于Laravel Passport 错误 - RequestException.php 第 107 行中的 ServerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39690227/

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