- Пара способов отправить уведомления на смартфон со своего сервера
- 1. Регистрируемся в Firebase
- 2. Настраиваем Firebase
- 3. Настройка приложения Android на приём уведомлений.
- 4. Отправляем уведомление со своего сервера
- Протокол первого поколения — Legacy HTTP
- Протокол второго поколения — (Modern) HTTP v1.
- Бонус, дополнительные параметры для уведомлений:
- Заключение
- Firebase Cloud Messaging (FCM) Send Push Notification using php script
- Step 1: Create a new Android Project
- Step 2: Connect new Project to firebase using firebase android studio assistant
- Step 1: Add Firebase Analytic
- Step 2: Add Cloud Messaging dependencies through assistant
- Step 3: Create a new Service class for FCM Services
- Step 4: Add Volley Library
- Step 5: Register/ Subscribe to Topic in java code
- Step 5: network configuration for android version 9
- Step 6: PHP script to send FCM push notification
- Send PUSH notification using Google FCM and PHP
- What actually is a Push Notification?
- Google Cloud Messaging
- Google FCM
- Coding it
- Setting up the SDK’s
- iOS
- Android
Пара способов отправить уведомления на смартфон со своего сервера
В этом туториале я рассмотрю пошагово, как отправлять со своего сервера уведомления на свой (или не свой) смартфон, какие средства для этого понадобятся. Эти способы универсальны и подойдут для любого языка программирования, т.к. напрямую используют API гугла, без использования библиотек. Отправить можно на смартфоны с Android, iOS и в браузеры с поддержкой Push API (на сегодня это Chrome, Firefox и их производные).
В общем всем тем, кто давно хотел отправлять уведомления со своего домашнего сервера на свой смартфон, но не знал с чего начать, посвящается.
Немного истории. В начале (с версии андроида 2.2) у гугла для доставки использовалась система C2DM (Android Cloud to Device Messaging), начиная с июня 2012 для этого стали предлагать использовать GCM (Google cloud messaging).
В настоящее время используется универсальная платформа Firebase, которая помимо доставки уведомлений имеет ещё много всяких других возможностей. Firebase тоже успела эволюционировать и протокол первого поколения уже считается устаревшим и для доставки сообщений рекомендуется использовать протокол второго поколения.
Технически, уведомления отправляются с сервера не напрямую в смартфон, а на некий промежуточный сервер, на котором при необходимости хранятся до 4-х недель (настраиваемо), и по возможности отправляются получателю. Т.е. если смартфон находится оффлайн, сервер ждёт. Как только появляется возможность — отправляет.
1. Регистрируемся в Firebase
Для регистрации в Firebase понадобится учётка гугла.
Жмём «Перейти к консоли».
Затем «Добавить проект».
Вводим название проекта. Рекомендую в диапазоне 8-16 символов.
Выбираем страну. Жмём «Создать проект».
2. Настраиваем Firebase
Прокручиваем до блока «Notifications», жмём «Начать».
Вам предложат выбрать приложение, для которого ваши уведомления будут отправляться.
Шаги для Andriod-приложения:
Шаг 1 — Вводим название проекта на Andriod.
Жмём «Зарегистрировать приложение».
Шаг 2 — Жмём «Скачать google-services.com».
Добавляем скачанный файл конфигурации в проект, рядом с файлом build.gradle (тем, который персональный для приложения).
Жмём «Продолжить».
После настройки приложения, можно сразу протестировать работает ли связь отправив тестовое сообщение (нет нельзя, у нас ещё нет ID клиента, куда слать).
3. Настройка приложения Android на приём уведомлений.
Важное примечание: некоторые оболочки, например MIUI, могут блокировать уведомления, если приложение не запущено или не висит в фоне. Делается это якобы для экономии заряда батареи.
Грубо говоря, отправлять можно два вида уведомлений:
— уведомление по запросу,
— уведомление с полезной нагрузкой.
У них разные способы взаимодействия с приложением.
Уведомление по запросу выведет уведомление в области уведомлений, но только в случае если приложение свёрнуто. При тапе пользователя оно откроет заранее выбранную (при отправке) активити приложения, и передаст бандлом экстра-параметры.
Уведомление с полезной нагрузкой требует наличия в приложении пары служб, в которые и передаётся управление, но на длительность не дольше 10 секунд.
Ниже приведён пример службы, которая отвечает за генерацию ID клиента.
И пример кода службы, принимающей сообщения. Приложение должно быть запущено, или висеть в фоне, иначе не гарантируется приём сообщений. Некоторые оболочки, например MIUI, в целях экономии, режут всё подряд, в том числе привелегии фоновых служб.
не забудьте прописать службы в манифесте.
ID клиента генерируется на устройстве, но вы сами выбираете способ доставки этого ID к себе на сервер.
Вот теперь можно протестировать, отправив тестовое сообщение из консоли.
4. Отправляем уведомление со своего сервера
Существует несколько способов обмена данными с сервером Firebase. Мы рассмотрим два способа обмена по протоколу HTTP.
Протокол первого поколения — Legacy HTTP
Понадобится ключ. Жмём на гайку, выбираем «Настройки проекта».
Вкладка «Cloud Messaging».
Копируем «Устаревший ключ сервера».
Здесь в поле «to» надо подставить ID клиента. В http заголовок «Authorization: key=» подставить «Устаревший ключ сервера».
Протокол второго поколения — (Modern) HTTP v1.
(источник: developers.google.com/identity/protocols/OAuth2ServiceAccount)
Не спрашивайте, почему вторая версия протокола называется V1, видимо первая считалась бетой и носила нулевой номер.
Я не углублялся в подробности, но так понимаю этот протокол более универсальный и имеет более широкие возможности, чем просто отправка уведомлений.
‘; // — parse answer JSON (lame) — // $line = explode(«\r\n», $receive); if ($line[0] != ‘HTTP/1.1 200 OK’) die($line[0]); $pos = FALSE; if (($pos = strpos($receive, «\r\n\r\n», 0)) !== FALSE ) < if (($pos = strpos($receive, "<", $pos+4)) !== FALSE ) < if (($pose = strpos($receive, ">«, $pos+1)) !== FALSE ) < $post = substr($receive, $pos, ($pose - $pos+1) ); $aw = json_decode($post, TRUE); $access_token = $aw['access_token']; >else die(‘> not found.’); > else die(‘ < not found.'); >else die(‘\r\n\r\n not found.’); // — шаг 3. отправляем запрос на Firebase сервер — // $socket = @fsockopen(‘ssl://fcm.googleapis.com’, 443, $errno, $errstr, 10); if (!$socket) die(‘error: remote host is unreachable.’); $payload = ‘ < "message":< "token" : "cGAFgPJGf-s:APA91bF**. **aEVM17c9peqZ", "notification" : < "title" : "Заголовок сообщения", "body" : "(Modern API) Моё первое сообщение через Firebase!" >> >’; // или $payload = ‘ < "message": < "token" : "cGAFgPJGf-s:APA91bF**. **aEVM17c9peqZ", "data":< "val1" : "Заголовок сообщения", "val2" : "(Modern API) Моё первое сообщение через Firebase!", "val3" : "дополнительные данные" >> >’; $send = »; $send .= ‘POST /v1/projects/pyur-test-id/messages:send HTTP/1.1’.»\r\n»; $send .= ‘Host: fcm.googleapis.com’.»\r\n»; $send .= ‘Connection: close’.»\r\n»; $send .= ‘Content-Type: application/json’.»\r\n»; $send .= ‘Authorization: Bearer ‘.$access_token.»\r\n»; $send .= ‘Content-Length: ‘.strlen($payload).»\r\n»; $send .= «\r\n»; $send .=$payload; $result = fwrite($socket, $send); $receive = »; while (!feof($socket)) $receive .= fread($socket, 8192); fclose($socket); echo »; ?>
по адресу console.firebase.google.com/project/poject-id/settings/serviceaccounts/adminsdk надо скопировать «Сервисный аккаунт Firebase» и подставить в переменную «$JWT_claim_set», в поле «iss».
Жмём «Создание закрытого ключа»
Создаём ключ, сохраняем, никому не показываем. В скачанном файле будет содержаться «Закрытый ключ», его подставляем в переменную «$private_key».
Хинт: токен, полученный в шагах 1 и 2 можно и нужно кешировать в локальном временном хранилище, например файле, или базе данных. И только по истечении времени (по умолчанию один час), запрашивать у сервера авторизации следующий токен.
Важно! Перед использованием Modern Http API необходимо явно разрешить его использование здесь: console.developers.google.com/apis/library/fcm.googleapis.com/?project=your-project
Бонус, дополнительные параметры для уведомлений:
sound — либо «default», либо имя ресурса в приложении. Должен располагаться в «/res/raw/». Формат MP3, AAC или ещё чего подходящее.
icon — меняет иконку уведомления. Должна храниться в «drawable» приложения. Если отсутствует, FCM будет использовать иконку приложения (указанную как «launcher icon» в манифесте приложения).
tag — Следует использовать для группировки однотипных уведомлений. Новые уведомления будут выводиться поверх уже имеющихся с таким же тегом.
color — цвет иконки, задаётся как «#rrggbb» (у меня в MIUI не заработало)
click_action — запускаемое активити, при нажатии пользователем на уведомлении.
Заключение
В будущем API вероятно будет изменяться, объявляться depricated и т.п. Поэтому сегодня думаю стоит делать сразу на протоколе HTTP v1.
Мне будет интересно почитать в комментариях оригинальные способы применения уведомлений, помимо новых сообщений из вконтактика. К примеру у меня настроен мониторинг вентиляторов ардуиной, и если они остановятся, отправляется уведомление.
Да, я в курсе, что существует Zabbix и т.п., но тема статьи — домашние сервера, и прочие умные дома. Считаю системы корпоративного класса перебором в любительских поделках.
Источник
Firebase Cloud Messaging (FCM) Send Push Notification using php script
Hi Guys, Welcome to Proto Coders Point, In this android tutorial we will send firebase push notification using php function/php script.
In other words, The FCM notification will be sent to particular user who are subscribed to a topic in Firebase Cloud Messaging Service.
So let’s begin implementing this Android FCM project.
Table of Contents
Step 1: Create a new Android Project
As usual create a new android project in your android studio
File > New > New Project
Give a name to your project say Firebase push notification service.
Step 2: Connect new Project to firebase using firebase android studio assistant
Step 1: Add Firebase Analytic
tools > firebase > select analytics
1. Connect to firebase
Hit that connect to firebase Button under assistant, This will open default browser with a firebase url to add your android project to your firebase console.
Just agree all the steps on your browser, if you face any problem to connect to firebase console check out the above video
2. Add Analytics to your app
just click on the button suggested by assistant “add analytic to your app” this will add all the required dependencies & classes.
3. Add analytic code
open MainActivity.java basically you loading or first screen of your android app.
Step 2: Add Cloud Messaging dependencies through assistant
under the android firebase assistant search for cloud messaging under that hit “Add FCM to your app”
This will add the FCM dependencies to your android project.
Step 3: Create a new Service class for FCM Services
Create a service java (Right Click) > New > Service > service and name it a anything your wish in my case i have named it as FirebaseCloudMessagingService.java
Then, Add the below links of notification service codes.
FirebaseCloudMessagingService.java
Step 4: Add Volley Library
As we gonna make a call to our php script to send notification in am making use of Volley library to make a call to my service side php code
open build.gradle(app level) and all the following volley dependencies.
Step 5: Register/ Subscribe to Topic in java code
This is how we make the user to register or subscribe to particular topic so that we can send notification to selected topic or subscriber using the topic that user are registered too.
Snippet code to make user subscribe to a topic in FCM.
Now, open strings.xml and add the following array strings
strings.xml
ok Then, Let’s design the UI of the app
acitivity_main.xml
MainActivity.java
Step 5: network configuration for android version 9
then you need to add a network configuration xml file where you define the network that you will be using…Usually the domain
res (right click) > New > Directory
give new diretory name as “xml”
Then, right click “xml directory” > New > xml resource file and name it as network_security_config.xml
Step 6: PHP script to send FCM push notification
How to get serverkey of FCM service ?
To view this video please enable JavaScript, and consider upgrading to a web browser that supports HTML5 video
Источник
Send PUSH notification using Google FCM and PHP
How often do you receive the notifications ‘your friend tagged in you a post’, ‘your friend is live’ ?. It makes sure you never miss a thing no matter how busy you are. and as a developer how often you wish your app had the same ability to lure users back time after time into your app?
Today I’m gonna talk about how to send Cross Platform (Android/iOS) Push Notification using Firebase Cloud messaging (Google FCM) with PHP. first things first,
What actually is a Push Notification?
A Push Notification basically is a message that pops up on the user’s smartphone. It may be sent by the app publishers at any time; users don’t have to be in the app or be using their devices to receive them. A push notification can be about anything for example, they can show the latest sports scores, get a user to take an action, such as downloading a coupon, or let a user know about an event, such as a flash sale. It helps the user to lure back into the app and increase engagement.
Google Cloud Messaging
A while ago google announced (Google Cloud Messaging): a free service that enables developers to send messages between servers and client apps which consisted downstream messaging from servers to client apps and upstream messages from client apps to servers (according to Google Documentation). Which helped publishers to send notifications to a set of users or a mass audience.
Here’s how GCM worked:
- An Android device sends sender id, application id to GCM server for registration.
- Upon successful registration, GCM server issues registration id to the device.
- After receiving registration id, the device will send registration id to our server.
- Our server will store registration id in the database for further use.
- Whenever push notification is needed, our server sends a message to GCM server along with device registration id (which is stored earlier in the database).
- GCM server delivers that message to the respective mobile device using device registration id.
Google FCM
But then not long ago, after acquiring Firebase in 2014, Google announced Firebase Cloud Messaging (FCM) to send various notifications and messages over various mobiles OS (even iOS) and the web. So why upgrade to FCM?
Even though FCM uses the core infrastructure of the GCM, there are various reasons to upgrade to FCM.
- TOPIC BASED MESSAGING: Unlike GCM there wasn’t need to run the notification publish logic under a massive loop of devices tokens which we had previously stored to send notifications. now devices were registered under a specific topic for eg (ESPN_SPORTS) and we just needed to mention the topic and it did the rest from routing to delivering messaging to all the devices stored under the topic.
- There wasn’t any need to write our own registration or subscription retry logic.
To upgrade from GCM SDKs to FCM SDKs, see the guides for migrating Android and iOS apps.
So after thihigh-levelel overview of GCM and the new FCM lets use FCM’s API with PHP to send push notifications to our devices.
Coding it
Before, coding we will need a server key, which we can obtain by doing the following:
- Login/sign-up to your firebase account.
- Then click on the gear icon on the left top and then click ‘project settings.’
- Also, register the APN certificates in the ‘ios app configuration’ to send the notifications to iOS devices.
We will develop a web GUI to send Push Notification to both Android and iOS devices. Before that, we will need to have a stable app installed on the phone.
So basically we will have 2 PHP files that subscribe devices to a given topic :
- A file that subscribes the devices. SDK’s should be set up to call the URL pointing the file upon opening of the app providing Firebase styled DEVICE_TOKEN. Devices will be registered with their device tokens.
- Another file to actually send the notification.
An example of the device subscription file (device_registration.php).
POST request is recommended while setting up the SDK’s to this URL. Make sure you have the desired topic set up as the topic has to MATCH the topic you define in the page where you send notifications.
Setting up the SDK’s
iOS
First of all, we need to define the device Register URL as follows:
An example of the SDK setup.
Android
Similarly as iOS setup, we need to define Registration URL for android as follows:
Example of the SDK setup.
Apps will now begin register or subscribe to topic defined in every open. Ok so lets move to
sending part now. we have a simple form to set up where we can send the notification.
At the backend, this form runs the following code upon submission.
Just like that, I received the notification with the desired title and summary.The title and body defines what users see in the actual notifications. You can send the data array accordingly to deep link the app to a certain page. As an example, here I am sending the model id so when the user’s clicks the notification it redirects you to the models page.
Moreover, you can filter your notifications audience for eg, device wise, geographically, etc simply just register their device accordingly to the respective topic. Make use of the flexibility of the topic, you will be able to get the desired result. as you can see Google FCM has made it really easy to send Push Notifications across various platforms.
Источник