laravel authorization problem
给我你的怀抱
给我你的怀抱 2017-05-16 16:49:07
0
1
444
Route::get('/redirect', function () {
    $query = http_build_query([
        'client_id' => '3',
        'redirect_uri' => 'http://localhost/auth/callback',
        'response_type' => 'code',
        'scope' => '',
    ]);

    return redirect('http://www.a031.com/oauth/authorize?'.$query);
});

Why does this keep appearing? All the accounts I entered are invalid. It seems to be authentication from the server, but I don’t need it. I’m already logged in!

What should I do so that the authentication and authorization page can appear? Remove this verification input box

给我你的怀抱
给我你的怀抱

reply all(1)
迷茫

Are you sure that 'redirect_uri' and return redirect are filled in correctly? There may be something wrong with the url

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template