Laravel 8 - unsupported_grant_type

Laravel 8 - unsupported_grant_type

我遇到以下问题:

这是我的代码:

use Illuminate\Support\Facades\Http;

$response = Http::withHeaders([
            'content-type' => 'application/x-www-form-urlencoded'
        ])->post('http://url:52904/Token', [
            'userName' => 'menganito',
            'password' => 'pepito',
            'grant_type' => 'password'
        ]);

        dd($response->json());

我尝试安装 ** Laravel Passport **,但我暂时没有使用数据库。

问题是 x-www-form-urlencoded。

这解决了我的问题 (asForm)

$response = Http::asForm()->post('http://url.com', [
                'userName' => 'user',
                'password' => 'pass',
                'grant_type' => 'password'
        ]);

dd($response->json());