1. Go to this page and download the library: Download carloswgama/php-fcm library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
carloswgama / php-fcm example snippets
composer
{
" "carloswgama/php-fcm"
}
}
php
irebase\FCM;
//Chave do Servidor para o envio de Push Notificação
$chaveServidor = 'AAAAgRytSgU:APA91bHeexGgSTjr6imnXCqxnP_k_tZ6VqPOZQ1QQ4Ck3-ozyNq5BP3fULtu-YGTZgZMF27QOfYQFqM8szV0t_nxNSCeu7dO1mWMMTOR7L_onWZLb8CC3ZIG-OQxUgiBNqNwV5HtGqw';
//Token do Dispositivo
$tokenDispositivo = 'ePQ_mDC90Hs:APA91bF-nz_jkGunC3eGU5hz2EhXGXute9AI2XlYLgC3XlY6MLDSw-GE5jhF7X77FFKLqFyW_S15RPx4qmAiqEl9I7V8n9N7QHc2OUP70ML14FK5KFMBrfKjtUVU0jcE0B9ropjIOmk';
//Classe para o envio
$fcm = new FCM($chaveServidor);
try {
$resultado = $fcm->setTitulo('Título - Dispositívo')
->setTexto('Textoo - Dispositívo')
->enviarPara($tokenDispositivo);
echo "Enviado com sucesso!<br/>";
print_r($resultado);
} catch(Exception $e) {
echo "Erro: " . $e->getMessage();
}
php
irebase\FCM;
//Chave do Servidor para o envio de Push Notificação
$chaveServidor = 'AAAAgRytSgU:APA91bHeexGgSTjr6imnXCqxnP_k_tZ6VqPOZQ1QQ4Ck3-ozyNq5BP3fULtu-YGTZgZMF27QOfYQFqM8szV0t_nxNSCeu7dO1mWMMTOR7L_onWZLb8CC3ZIG-OQxUgiBNqNwV5HtGqw';
//Classe para enviar
$fcm = new FCM($chaveServidor);
try {
$resultado = $fcm->setTitulo('Título - Dispositívo')
->setTexto('Textoo - Dispositívo')
->enviarTopico('literatura');
echo "Enviado com sucesso!<br/>";
print_r($resultado);
} catch(Exception $e) {
echo "Erro: " . $e->getMessage();
}
php
irebase\FCM;
//Chave do Servidor para o envio de Push Notificação
$chaveServidor = 'AAAAgRytSgU:APA91bHeexGgSTjr6imnXCqxnP_k_tZ6VqPOZQ1QQ4Ck3-ozyNq5BP3fULtu-YGTZgZMF27QOfYQFqM8szV0t_nxNSCeu7dO1mWMMTOR7L_onWZLb8CC3ZIG-OQxUgiBNqNwV5HtGqw';
//Classe para enviar
$fcm = new FCM($chaveServidor);
$dadosExtras = ['nome' => 'Carlos', 'cargo' => 'programador'];
try {
$resultado = $fcm->setTitulo('Título - Dispositívo')
->setTexto('Textoo - Dispositívo')
->setExtras($dadosExtras)
->enviarTopico('literatura');
echo "Enviado com sucesso!<br/>";
print_r($resultado);
} catch(Exception $e) {
echo "Erro: " . $e->getMessage();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.