Estou tentando enviar usando o Sua visita nos ajuda a continuar oferecendo o melhor para você! a seguir, mas estou recebendo o erro “A operação não está implementada, nem suportada, nem habilitada”.
$users = [
['registration_token' => "eUr2Gyu0R-WD2giKqQuBHO:APA91bE97YKaBcc0-nckfDcGfF1U0olmkDxomvjM-HM-fNfy9yl1IwBvOPOxvzTATktfIz8GU-daCwr4HB3qYBtwAdvpaJ839cLaJ32XW0NVLToJ07dfJkxTMGhWe-fVAvRw314AOsP6"],
// ...more tokens
];
$messages = [];
foreach ($users as $user) {
$messages[] = CloudMessage::withTarget('token', $user['registration_token'])
->withNotification([
'title' => "Tittle...",
'body' => "Message",
]);
}
$messaging = (new Factory())
->withServiceAccount('firebase_cloud_messaging.json')
Sua visita nos ajuda a continuar oferecendo o melhor para você! ->createMessaging();
$sendReport = $messaging->sendAll($messages);
echo 'Successful sends: ' . $sendReport->successes()->count() . PHP_EOL;
print_r($sendReport->failures());```
Tags:
Crédito: Natividade Original