Мы пытаемся получить access_token с конечной точки Microsoft OAUTH с помощью Guzzle, но всегда получаем ответ 400 - Bad request. Есть идеи по этому поводу? Вот запрос жрать:400 Плохой запрос с Guzzle с конечной точки Microsoft Oauth
$r = $this->client->createRequest('POST', 'https://login.windows.net/common/oauth2/token', [
'body' => [
'grant_type' => 'authorization_code',
'client_id' => 'foo',
'client_secret' => 'bar',
'code' => 'baz',
'redirect_uri' => 'http://my.app/oauth/r_url'
]
]);
$res = $this->client->send($r);
Сделал это уже. Тот же ответ. – Kornel