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










share|improve this question




























    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










    share|improve this question


























      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










      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 at 18:02

























      asked Nov 22 at 15:09









      mptr

      12




      12





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          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






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          What visual should I use to simply compare current year value vs last year in Power BI desktop

          Alexandru Averescu

          Trompette piccolo