1

我为 GCM 使用了mark nutter phonegap 插件,并成功从服务器获取了注册 ID

这是我使用的 php 脚本

  <?php
           // Replace with real server API key from Google APIs  
            $apiKey = "AIzaSyC7wzEjjMaOGLYp8_w3USftv_3lI-qCdZ4";    

              // Replace with real client registration IDs
           $registrationIDs = array( "APA91bFt3slFE96jaB5qnoD5gR0TCwsxe5StEGyrECR0umYviG0cfG1JNnFxYqP1ERr1RoWc38rsuWjRUx5SZ7cgUNG9-mQ4mSsY8_XQLquft5DLnqWcLCEB2wtQpfA6EAp5OQmOWzpUZU5bohfG4sfLWNUco7XxXg");

          // Message to be sent
         $message = "hi SOurabh";

         // Set POST variables
        $url = 'https://android.googleapis.com/gcm/send';

       $fields = array(
       'registration_ids' => $registrationIDs,
         'data' => array( "message" => $message ),
        );
     $headers = array(
      'Authorization: key=' . $apiKey,
     'Content-Type: application/json'
      );

     // Open connection
          $ch = curl_init();

        // Set the url, number of POST vars, POST data
        curl_setopt( $ch, CURLOPT_URL, $url );
        curl_setopt( $ch, CURLOPT_POST, true );
        curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers);
            curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
        //curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );

         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
     //     curl_setopt($ch, CURLOPT_POST, true);
       //     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( $fields ));

            // Execute post
         $result = curl_exec($ch);

        // Close connection
           curl_close($ch);
         echo $result;
          //print_r($result);
           //var_dump($result);
       ?>

我对 php 了解不多,我使用 thi 只是为了测试通知

当我运行它时,我收到以下消息

{"multicast_id":9187695352946100598,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"MismatchSenderId"}]}

知道为什么我会得到这个吗?或任何其他方式来测试应用程序?

4

2 回答 2

1

您在项目中使用的项目 ID 是否与谷歌控制台上显示的 ID 匹配?

https://code.google.com/apis/console/#project :?????

API 密钥是否属于谷歌 GCM 页面上的“服务器应用程序”?您的手机还必须有一个有效的注册 google 帐户才能接收通知。

于 2012-10-19T07:16:06.377 回答
0

我开始使用您的 php 脚本在我的应用程序上调试推送通知。我第一次收到同样的错误。在客户端应用程序中更新SENDER_IDGoogle API 控制台应用程序的值修复了问题 - 消息已成功传递。Project IDAndroid

于 2013-07-31T09:37:46.837 回答