我正在尝试使用oauth / authorize来使用Passport,以便以后允许Web应用程序获取代码并请求令牌,但我收到错误
路线[登录]未定义
以下是我的代码。
客户端代码
// First route that user visits on consumer app
Route::get('/', function () {
// Build the query parameter string to pass auth information to our request
$query = http_build_query([
'client_id' => 3,
//'client_secret' => 'MtkEmBL0f0Bf4LcEPcOBUS0wLHvF5xqqchhCpaTH',
'redirect_uri' => 'http://client.app:8082/callback',
'response_type' => 'code',
'scope' => ''
]);
// Redirect the user to the OAuth authorization page
return redirect('http://server.app:8082/oauth/authorize?' . $query);
});
// Route that user is forwarded back to after approving on server
Route::get('/callback', function (Request $request) {
return 'test 2';
$http = new GuzzleHttp\Client;
$response = $http->post('http://server.app:8082/oauth/token', [
'form_params' => [
'grant_type' => 'authorization_code',
'client_id' => 3, // from admin panel above
'client_secret' => 'MtkEmBL0f0Bf4LcEPcOBUS0wLHvF5xqqchhCpaTH', // from admin panel above
'redirect_uri' => 'http://client.app:8082/callback',
'code' => $request->code // Get code from the callback
]
]);
// echo the access token; normally we would save this in the DB
return json_decode((string) $response->getBody(), true)['access_token'];
});
答案 0 :(得分:2)
也许您有多个错误。看起来你忘了定义常用的auth路由。从php artisan make:auth
或Auth::routes()
开始。 OAuth路由没有login
路由,您所遇到的错误表明您没有定义login
路由。它实际上在Auth::routes()
中定义。
答案 1 :(得分:0)
我有同样的问题,显然,我没有在请求中传递Accept标头
Accept:application/json