Javascript 通过错误数据推送消息

Javascript 通过错误数据推送消息,javascript,php,curl,Javascript,Php,Curl,我创建了一个推送消息程序,它使用firebase.google.com。 如果通过javascript发送推送消息,则消息是完美的,但如果使用Php curl发送推送消息,则消息与我在Php文件中编写的消息不同。 如果我通过Php curl发送,消息将是我在service-worker.js中编写的。 为什么 Php代码 function send_push_message($subscription){ if (empty($subscription)) return FALSE; $ch =

我创建了一个推送消息程序,它使用firebase.google.com。 如果通过javascript发送推送消息,则消息是完美的,但如果使用Php curl发送推送消息,则消息与我在Php文件中编写的消息不同。 如果我通过Php curl发送,消息将是我在service-worker.js中编写的。 为什么

Php代码

function send_push_message($subscription){
if (empty($subscription)) return FALSE;
$ch = curl_init();
  switch ($subscription["browser"]){
      case "firefox":
          curl_setopt($ch, CURLOPT_URL, "https://updates.push.services.mozilla.com/push/".$subscription["id"] );
          curl_setopt($ch, CURLOPT_PUT, TRUE);
          curl_setopt($ch, CURLOPT_HTTPHEADER, array( "TTL: 86400" ) );
          curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
          curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
      break;

      case "chrome":

      /**
        * https://console.firebase.google.com
        * http://stackoverflow.com/questions/37427709/firebase-messaging-where-to-get-server-key
        */
          // API access key from Google API's Console
          define( 'API_ACCESS_KEY', '<API_SZERVER_KULCSOM>' );

            $registrationIds = array($_GET["id"]);
          // prep the bundle
          $msg = array
          (
              'message'   => 'My text',
              'title'     => 'This is a title. title',
              'subtitle'   => 'This is a subtitle. subtitle',
              'tickerText'   => 'Ticker text here...Ticker text here...Ticker text here',
              'vibrate'   => 1,
              'sound'     => 1
          );
          $fields = array
          (
              'registration_ids'   => $registrationIds,
              'data'       => $msg
          );

          $headers = array
          (
              'Authorization: key=' . API_ACCESS_KEY,
              'Content-Type: application/json'
          );

          $ch = curl_init();
          curl_setopt($ch, CURLOPT_URL, "https://gcm-http.googleapis.com/gcm/send" );
          curl_setopt( $ch,CURLOPT_POST, true );
          curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
          curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
          curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
          curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
          $response = curl_exec($ch);
          echo $response;
          if($response === false){
              echo 'Hiba: '.curl_error($ch);
          }else{
              echo 'Siker';
          }
          curl_close($ch);
      break;  
  }
}
$tomb["browser"] = "chrome";
$tomb["id"] = $_GET["id"];
if(isset($_GET["id"])){
  send_push_message($tomb);
}
谢谢

谢谢, 当访问者注册时,我不会通过javascript发送消息。 例如,我在5天后通过Php Curl发送消息。 发送消息将是我写的javascript。当我发送消息时,我只在5天后使用Php curl

如果不使用$msg,为什么Php curl中的$msg值是

谢谢

“消息将是我在ServiceWorker.js中写的”,因为您的值是静态的。JS不会自动为您替换这些值。您必须编写代码,从事件数据有效负载中设置body、icon等
self.addEventListener('push', function(event) {
var title = 'xxxxxx';
var body = 'Szerbusz YYY';
var icon = '/images/icon-192x192.png';
var tag = 'simple-push-demo-notification-tag';
event.waitUntil(
  self.registration.showNotification(title, {
    body: body,
    icon: icon,
    tag: tag
  })
);
});