Send Web Push Notification Request via FCM with PHP and cURL
up vote
0
down vote
favorite
First: Im running my notification service backend on a managed webserver. Therefore I am not able to install anything like the Web-Push-Apis from Github.
I already managed to send a Notification using this Site with a Google codelab. Through a bit of analyzing the js code from there I achieved to send a POST-Resuest to https://web-push-codelab.glitch.me/api/send-push-msg. Here is the code performing the sucessful Request (I recieved the Push):
<?php $ch = curl_init();
$posts =
array(
"subscription" => array(
"endpoint" => "https://fcm.googleapis.com/fcm/send/eSjh0WEJrr8:APA91bHZ27ZTNCI3jAz_cQ0zU7XJK48pJCfXYZBaNx6jSXE3x2Wp3NCh2bdj4KeOQrYTVfpDO9B5b8nD13AgZvtBjOEZrCADD30mtwBGxkH5DhpIAUGl3we95ksYxNn0dsI-2sqcfT5P",
"expirationTime" => null,
"keys" => array(
"p256dh"=>"BGmhdBvOcgU6yBeUtCiBoBDbG7lXEiOiRclS4_rviJi2OX-ji-9xKmoItsg30GoU6Rs-gHZUvqO6As3ZxUxAHP0",
"auth" =>"p9lkcCVolUAV2uUfYnhXlw"
)
),
"data" => $_GET["msg"],
"applicationKeys" => array(
"public" => "BCdiN5BM9evNa3pBIQbXMiq0l3k3mh0Z50yFo4LBsJqXQnh-MddYlPGhEE38urwJunmrcVNlF1VT3K8pZrFz8z4",
"private" => "e2gCLRWMf1wMa8khygzeNmr96o-YE21COMLaFqPvRAg"
)
);
curl_setopt($ch, CURLOPT_URL, "https://web-push-codelab.glitch.me/api/send-push-msg");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($posts));
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo($result);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);?>
The keypair is from the glitch.me page. The subscription array holds data, the Serviceworker Codelab gave me. My Serviceworker looks exactly like the codelab one.
Can somebody please tell me how I have to perform the Request directly to FCM instead of (ab)using the services from the Codelab example page
php firebase curl push-notification firebase-cloud-messaging
add a comment |
up vote
0
down vote
favorite
First: Im running my notification service backend on a managed webserver. Therefore I am not able to install anything like the Web-Push-Apis from Github.
I already managed to send a Notification using this Site with a Google codelab. Through a bit of analyzing the js code from there I achieved to send a POST-Resuest to https://web-push-codelab.glitch.me/api/send-push-msg. Here is the code performing the sucessful Request (I recieved the Push):
<?php $ch = curl_init();
$posts =
array(
"subscription" => array(
"endpoint" => "https://fcm.googleapis.com/fcm/send/eSjh0WEJrr8:APA91bHZ27ZTNCI3jAz_cQ0zU7XJK48pJCfXYZBaNx6jSXE3x2Wp3NCh2bdj4KeOQrYTVfpDO9B5b8nD13AgZvtBjOEZrCADD30mtwBGxkH5DhpIAUGl3we95ksYxNn0dsI-2sqcfT5P",
"expirationTime" => null,
"keys" => array(
"p256dh"=>"BGmhdBvOcgU6yBeUtCiBoBDbG7lXEiOiRclS4_rviJi2OX-ji-9xKmoItsg30GoU6Rs-gHZUvqO6As3ZxUxAHP0",
"auth" =>"p9lkcCVolUAV2uUfYnhXlw"
)
),
"data" => $_GET["msg"],
"applicationKeys" => array(
"public" => "BCdiN5BM9evNa3pBIQbXMiq0l3k3mh0Z50yFo4LBsJqXQnh-MddYlPGhEE38urwJunmrcVNlF1VT3K8pZrFz8z4",
"private" => "e2gCLRWMf1wMa8khygzeNmr96o-YE21COMLaFqPvRAg"
)
);
curl_setopt($ch, CURLOPT_URL, "https://web-push-codelab.glitch.me/api/send-push-msg");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($posts));
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo($result);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);?>
The keypair is from the glitch.me page. The subscription array holds data, the Serviceworker Codelab gave me. My Serviceworker looks exactly like the codelab one.
Can somebody please tell me how I have to perform the Request directly to FCM instead of (ab)using the services from the Codelab example page
php firebase curl push-notification firebase-cloud-messaging
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
First: Im running my notification service backend on a managed webserver. Therefore I am not able to install anything like the Web-Push-Apis from Github.
I already managed to send a Notification using this Site with a Google codelab. Through a bit of analyzing the js code from there I achieved to send a POST-Resuest to https://web-push-codelab.glitch.me/api/send-push-msg. Here is the code performing the sucessful Request (I recieved the Push):
<?php $ch = curl_init();
$posts =
array(
"subscription" => array(
"endpoint" => "https://fcm.googleapis.com/fcm/send/eSjh0WEJrr8:APA91bHZ27ZTNCI3jAz_cQ0zU7XJK48pJCfXYZBaNx6jSXE3x2Wp3NCh2bdj4KeOQrYTVfpDO9B5b8nD13AgZvtBjOEZrCADD30mtwBGxkH5DhpIAUGl3we95ksYxNn0dsI-2sqcfT5P",
"expirationTime" => null,
"keys" => array(
"p256dh"=>"BGmhdBvOcgU6yBeUtCiBoBDbG7lXEiOiRclS4_rviJi2OX-ji-9xKmoItsg30GoU6Rs-gHZUvqO6As3ZxUxAHP0",
"auth" =>"p9lkcCVolUAV2uUfYnhXlw"
)
),
"data" => $_GET["msg"],
"applicationKeys" => array(
"public" => "BCdiN5BM9evNa3pBIQbXMiq0l3k3mh0Z50yFo4LBsJqXQnh-MddYlPGhEE38urwJunmrcVNlF1VT3K8pZrFz8z4",
"private" => "e2gCLRWMf1wMa8khygzeNmr96o-YE21COMLaFqPvRAg"
)
);
curl_setopt($ch, CURLOPT_URL, "https://web-push-codelab.glitch.me/api/send-push-msg");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($posts));
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo($result);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);?>
The keypair is from the glitch.me page. The subscription array holds data, the Serviceworker Codelab gave me. My Serviceworker looks exactly like the codelab one.
Can somebody please tell me how I have to perform the Request directly to FCM instead of (ab)using the services from the Codelab example page
php firebase curl push-notification firebase-cloud-messaging
First: Im running my notification service backend on a managed webserver. Therefore I am not able to install anything like the Web-Push-Apis from Github.
I already managed to send a Notification using this Site with a Google codelab. Through a bit of analyzing the js code from there I achieved to send a POST-Resuest to https://web-push-codelab.glitch.me/api/send-push-msg. Here is the code performing the sucessful Request (I recieved the Push):
<?php $ch = curl_init();
$posts =
array(
"subscription" => array(
"endpoint" => "https://fcm.googleapis.com/fcm/send/eSjh0WEJrr8:APA91bHZ27ZTNCI3jAz_cQ0zU7XJK48pJCfXYZBaNx6jSXE3x2Wp3NCh2bdj4KeOQrYTVfpDO9B5b8nD13AgZvtBjOEZrCADD30mtwBGxkH5DhpIAUGl3we95ksYxNn0dsI-2sqcfT5P",
"expirationTime" => null,
"keys" => array(
"p256dh"=>"BGmhdBvOcgU6yBeUtCiBoBDbG7lXEiOiRclS4_rviJi2OX-ji-9xKmoItsg30GoU6Rs-gHZUvqO6As3ZxUxAHP0",
"auth" =>"p9lkcCVolUAV2uUfYnhXlw"
)
),
"data" => $_GET["msg"],
"applicationKeys" => array(
"public" => "BCdiN5BM9evNa3pBIQbXMiq0l3k3mh0Z50yFo4LBsJqXQnh-MddYlPGhEE38urwJunmrcVNlF1VT3K8pZrFz8z4",
"private" => "e2gCLRWMf1wMa8khygzeNmr96o-YE21COMLaFqPvRAg"
)
);
curl_setopt($ch, CURLOPT_URL, "https://web-push-codelab.glitch.me/api/send-push-msg");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($posts));
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo($result);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close ($ch);?>
The keypair is from the glitch.me page. The subscription array holds data, the Serviceworker Codelab gave me. My Serviceworker looks exactly like the codelab one.
Can somebody please tell me how I have to perform the Request directly to FCM instead of (ab)using the services from the Codelab example page
php firebase curl push-notification firebase-cloud-messaging
php firebase curl push-notification firebase-cloud-messaging
edited Nov 22 at 18:02
asked Nov 22 at 15:09
mptr
12
12
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433793%2fsend-web-push-notification-request-via-fcm-with-php-and-curl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown