通过curl错误的数据推送消息

时间:2017-03-04 18:02:47

标签: 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 = 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);
}

服务worker.js

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
  })
);
});

谢谢

1 个答案:

答案 0 :(得分:0)

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

为什么Php卷曲中的$ msg值,如果不使用它?

由于

相关问题