Skip to content

Instantly share code, notes, and snippets.

View iespino00's full-sized avatar

Ignacio Espino Rivera iespino00

View GitHub Profile
@iespino00
iespino00 / Push Notification
Created August 30, 2017 22:47
Push notification desde PHP - Firebase.
<?php
function send_notification($tokens, $message)
{
$url='https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $tokens,
'data' => $message
);