Why curl_exec() is returning an array in my web service?
I created a web service to send push notifications with Firebase. Everthing works perfectly well except that the result of notification is coming with the server response, even if I didn't ask it.
public function send_notification($recipient_id,$recipient_type,$request_status)
{
$url = "https://fcm.googleapis.com/fcm/send";
$token = $user_device_token;
$notification = array(
'title' => $title,
'text' => $body,
'sound' => 'default',
'badge' => '1'
);
$arrayToSend = array(
'to' => $token,
'notification' => $notification,
'priority' => 'high'
);
$json = json_encode($arrayToSend);
$headers = array();
$headers[] = 'Content-Type: application/json';
$headers[] = 'Authorization: key=' . $server_key;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
//Send the request
error_reporting(E_ERROR);
$response_notification = curl_exec($ch);
if ($response_notification === FALSE) {
die('FCM Send Error: ' . curl_error($ch));
}
curl_close($ch);
return $response_notification;
}
Here is how I call the send_notification() function:
$this->send_notification($request->provider_id,'provider',0);
Then I print a success message for the client side part of the webapp:
$response_array = array(
'success' => true,
'request_id' => $requests->id,
'current_provider' => $request->provider_id,
'address' => $requests->s_address,
'latitude' => $requests->s_latitude,
'longitude' => $requests->s_longitude,
);
$response = response()->json($response_array, 200);
return $response;
Even if I didn't ask, there is the notification response generated when calling curl_exec($ch), attached to the response.
The first line is the one I don't want and I am not expecting.