lkaybob/php-fcm-v1

PHP Implementation of FCM HTTP v1 API

v1.0.2 2019-07-17 07:39 UTC

This package is auto-updated.

Last update: 2024-03-30 00:32:27 UTC


README

Build Status codecov Latest Stable Version Total Downloads License

php-fcm-v1 is an PHP implementation of FCM HTTP v1 API

What is different compared to others FCM Libraries?

Most of other libraries are implementation of FCM's Legacy HTTP Server Protocol. It requires a server key from Firebase console (which means you have to copy and paste in your code) (Docs)

HTTP v1 API, in contrast, leverages OAuth2 security model. You need to get an access token (which is valid for about an hour) in order to request sending notification with service account's private key file. Although (See the blog post about HTTP v1 API)

References

How to use

  • Install the library with composer

    composer require lkaybob/php-fcm-v1
    
  • Import the library with autoload.php

    <?php
    require_once __DIR__ . '/vendor/autoload.php';
    
    use phpFCMv1\Client;
    use phpFCMv1\Notification;
    use phpFCMv1\Recipient;
  • Create Necessary class instances, Client, Recipient, Notification/Data

    // Client instance should be created with path to service account key file
    $client = new Client('service_account.json');
    $recipient = new Recipient();
    // Either Notification or Data (or both) instance should be created
    $notification = new Notification();
  • Setup each instances with necessary information

    // Recipient could accept individual device token,
    // the name of topic, and conditional statement
    $recipient -> setSingleREcipient('DEVICE_TOKEN');
    // Setup Notificaition title and body
    $notification -> setNotification('NOTIFICATION_TITLE', 'NOTIFICATION_BODY');
    // Build FCM request payload
    $client -> build($recipient, $notification);
  • Fire in the FCM Server!

    $result = $client -> fire();
    // You can check the result
    // If successful, true will be returned
    // If not, error message will be returned
    echo $result;

Further Example

  • Full Simple Example

    <?php
    require_once __DIR__ . '/vendor/autoload.php';
    
    use phpFCMv1\Client;
    use phpFCMv1\Notification;
    use phpFCMv1\Recipient;
    
    $client = new Client('service_account.json');
    $recipient = new Recipient();
    $notification = new Notification();
    
    $recipient -> setSingleRecipient('DEVICE_TOKEN');
    $notification -> setNotification('NOTIFICATION_TITILE', 'NOTIFICATION_BODY');
    $client -> build($recipient, $notification);
    $client -> fire();
  • Using with PRIOIRTY option (for both Android & iOS)

    <?php
    require_once __DIR__ . '/vendor/autoload.php';
    
    use phpFCMv1\Client;
    use phpFCMv1\Config;
    use phpFCMv1\Notification;
    use phpFCMv1\Recipient;
    
    $client = new Client('service_account.json');
    $recipient = new Recipient();
    $notification = new Notification();
    $config = new Config();
    
    $recipient -> setSingleRecipient('DEVICE_TOKEN');
    $notification -> setNotification('NOTIFICATION_TITLE', 'NOTIFICATION_BODY');
    $config -> setPriority(Config::PRIORITY_HIGH);
    $client -> build($recipient, $notification, null, $config);
    $result = $client -> fire();
  • For independent platform (either Android or iOS)

    // Option Instance for Android
    // Use phpFCMv1\AndroidConfig Class
    $androidConfig = new Config\AndroidConfig();
    $androidConfig -> setPriority(Config\AndroidConfig::PRIORITY_HIGH);
    $client -> build($recipient, $notification, null, $androidConfig);
    
    // Option Instance for iOS (which is APNs header)
    // Use phpFCMv1\APNsCOnfig Class
    $apnsConfig = new APNsConfig();
    $apnsConfig -> setPriority(APNsConfig::PRIORITY_HIGH);
    $client -> build($recipient, $notification, null, $apnsConfig);
    

Future Works

  • Implement simultaneous send (Currently supports single recipient or topic one at a time)
  • Setup Read the Docs
  • Add CI Test
  • Add CodeCov Badge