Laravel 8 请求授权码
2021-07-26 09:53 更新
使用授权码请求访问令牌时,接入的应用需为 scope
参数指定所需作用域。 scope
参数包含多个作用域时,名称之间使用空格分割:
Route::get('/redirect', function () {
$query = http_build_query([
'client_id' => 'client-id',
'redirect_uri' => 'http://example.com/callback',
'response_type' => 'code',
'scope' => 'place-orders check-status',
]);
return redirect('http://your-app.com/oauth/authorize?'.$query);
});
以上内容是否对您有帮助:
更多建议: