В процессе моей разработки мой код работает правильно. Когда я отправляю sh на свой сервер, это становится ошибкой.
"message": "cURL error 6: Could not resolve host: oauth (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)",
А вот мой код
$response = $http->request('POST', 'oauth/token', [
'form_params' => [
'grant_type' => 'password',
'client_id' => $oClient->id,
'client_secret' => $oClient->secret,
'username' => $email,
'password' => $password,
'scope' => '*',
],
]);
Как решение? Спасибо