遷移到Firebase後,我測試了通過使用Firebase控制檯發送通知的工作正常,但我需要每天通知特定時間,以便不使用Firebase控制檯,而是使用我以前的cron作業每天發送通知。我將https://android.googleapis.com/gcm/send
更改爲https://fcm.googleapis.com/fcm/send
,但我的設備未收到任何通知。如何在服務器端實現firebase雲消息傳遞?
有什麼辦法解決這個問題嗎?或者我錯過了什麼?我的cron作業對於仍在使用GCM的設備工作正常。
這裏是我的代碼
function sendNotificationFCM($apiKey, $registrationIDs, $messageText,$id) {
$headers = array(
'Content-Type:application/json',
'Authorization:key=' . $apiKey
);
$message = array(
'registration_ids' => $registrationIDs,
'data' => array(
"message" => $messageText,
"id" => $id,
),
);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => 'https://fcm.googleapis.com/fcm/send',
CURLOPT_HTTPHEADER => $headers,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => json_encode($message)
));
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
@McAwesomville從我讀過的https://開頭火力點。 google.com/docs/cloud-messaging/server#implementing-http-connection-server-protocol它表示要發送消息,應用程序服務器i發出POST請求。例如:'https.fcm.googleapis.com/fcm/send' – natsumiyu
@McAwesomville它對使用什麼感到困惑:(但我會嘗試它 – natsumiyu
我會盡量環顧四周,讓我知道如果我找到東西:) :) –