0
Я пытаюсь запрос жрать HTTP сообщение отguzzlephp 401 несанкционированный выпуск
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://android.googleapis.com/gcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
curl_close($ch);
return $result;
, где заголовки является
$headers = [
'Authorization: key=' . $api_access_key,
'Content-Type: application/json',
];
и разместить поля
$fields = [
'registration_ids' => $registrationIds,
'data' => [
'title' => $title,
'message' => $message,
'type' => $type,
],
];
который ответ хорошо, как и ожидалось но если я назову этот запрос клиентом guzzlehttp на
$URL='https://android.googleapis.com/gcm/send';
$client = new \GuzzleHttp\Client(['http_errors' => false]);
$response = $client->request('POST', $URL,['form_params'=>$fields],
['headers'=>[
'Authorization' => 'key='.$api_access_key,
'Content-Type' => 'application/json']]);
return $response->getBody()->getContents();
Это ответ с 401 неавторизованным. Где моя проблема? Спасибо.