curl_setopt_array (): не может представлять поток типа Output как STDIO FILE * - PullRequest
0 голосов
/ 28 января 2019

Ошибка:

"message": "curl_setopt_array (): невозможно представить поток типа Output в виде STDIO FILE *", "status_code": 500

Информация о системе: Windows 10Xampp 3.2 php V 7.2

$response = $http->request('POST','http://localhost:8000/oauth/token',  [
'debug' => true,    
    'form_params' => [
        'grant_type' => 'password',
        'client_id' => 3,
        'client_secret' => 'dddddd',
        'username' => 'ddddd@ssss.com',
        'password' => '123456',
        'scope' => '*',
    ],
]);
...