我正在尝试使用Passport使用oauth/authorize,以便允许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'];
});


发布于 2017-09-10 22:38:33
也许你有不止一个错误。看来你忘了定义普通的奥斯丁路线了。从php artisan make:auth或Auth::routes()开始。OAuth路由没有login路由,您得到的错误表明您没有定义login路由。它实际上是在Auth::routes()中定义的。
发布于 2018-01-31 02:58:54
我也有同样的问题,很明显,我并没有在请求中传递接受头
Accept:application/jsonhttps://stackoverflow.com/questions/46145166
复制相似问题